From ba23eb72807625a13aa33e448ae2026e75917e3b Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Thu, 28 Apr 2022 01:04:30 +0200 Subject: [PATCH] Small LINT fix --- platypush/cron/scheduler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platypush/cron/scheduler.py b/platypush/cron/scheduler.py index 74eaaae5..0671cfd0 100644 --- a/platypush/cron/scheduler.py +++ b/platypush/cron/scheduler.py @@ -17,8 +17,8 @@ def get_now() -> datetime.datetime: :return: A timezone-aware representation of `now` """ return datetime.datetime.now().replace( - tzinfo=gettz() - ) # lgtm [py/call-to-non-callable] + tzinfo=gettz() # lgtm [py/call-to-non-callable] + ) class CronjobState(enum.IntEnum):