From 6962662ce55eeb4253a449d7600398d633e29580 Mon Sep 17 00:00:00 2001 From: Zedifus Date: Mon, 13 Jun 2022 19:41:25 +0100 Subject: [PATCH] Fix black --- app/classes/shared/tasks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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))