Update autostart.py

Return false rather than none if autostart is disabled
This commit is contained in:
Murdo Maclachlan 2020-09-30 23:33:33 +01:00 committed by GitHub
parent 6f04bd0444
commit a6fd10e989
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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