mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-27 11:26:13 +00:00
Removed else statements from loops without breaks
This commit is contained in:
parent
98c86304fe
commit
cc899931ed
4 changed files with 12 additions and 11 deletions
|
@ -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)
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue