forked from platypush/platypush
Small LINT fix
This commit is contained in:
parent
41d0725ebf
commit
ba23eb7280
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ def get_now() -> datetime.datetime:
|
||||||
:return: A timezone-aware representation of `now`
|
:return: A timezone-aware representation of `now`
|
||||||
"""
|
"""
|
||||||
return datetime.datetime.now().replace(
|
return datetime.datetime.now().replace(
|
||||||
tzinfo=gettz()
|
tzinfo=gettz() # lgtm [py/call-to-non-callable]
|
||||||
) # lgtm [py/call-to-non-callable]
|
)
|
||||||
|
|
||||||
|
|
||||||
class CronjobState(enum.IntEnum):
|
class CronjobState(enum.IntEnum):
|
||||||
|
|
Loading…
Reference in a new issue