Removed else statements from loops without breaks

This commit is contained in:
Abby Gourlay 2020-08-02 15:53:58 +01:00
parent 98c86304fe
commit cc899931ed
4 changed files with 12 additions and 11 deletions

View file

@ -25,7 +25,7 @@ from helper import LazyLogger # noqa: F402
#################################################################################################
LOG = LazyLogger(__name__)
DELAY = int(settings('startupDelay') if settings('SyncInstallRunDone.bool') else 4 or 0)
DELAY = int(settings('startupDelay') if settings('SyncInstallRunDone.bool') else 4)
#################################################################################################