diff --git a/app/classes/shared/tasks.py b/app/classes/shared/tasks.py index a6c861bf..d64adb0b 100644 --- a/app/classes/shared/tasks.py +++ b/app/classes/shared/tasks.py @@ -46,7 +46,9 @@ class TasksManager: try: self.tz = get_localzone() except ZoneInfoNotFoundError: - logger.error("Could not capture time zone from system. Falling back to Europe/London") + logger.error( + "Could not capture time zone from system. Falling back to Europe/London" + ) self.tz = "Europe/London" self.scheduler = BackgroundScheduler(timezone=str(self.tz))