From a6fd10e989e1ee60bcaa1e15107a38f7efa9be7c Mon Sep 17 00:00:00 2001 From: Murdo Maclachlan Date: Wed, 30 Sep 2020 23:33:33 +0100 Subject: [PATCH] Update autostart.py Return false rather than none if autostart is disabled --- discover_overlay/autostart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discover_overlay/autostart.py b/discover_overlay/autostart.py index ec025e5..621343c 100644 --- a/discover_overlay/autostart.py +++ b/discover_overlay/autostart.py @@ -50,4 +50,4 @@ class Autostart: pass def is_auto(self): - return True if self.auto else None + return True if self.auto else False