Small LINT fix

This commit is contained in:
Fabio Manganiello 2022-04-28 01:04:30 +02:00
parent 41d0725ebf
commit ba23eb7280
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 2 additions and 2 deletions

View File

@ -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):