fix deprecation notice
This commit is contained in:
parent
608e85bc93
commit
68c2886ac0
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ def exist_post(file_id: int) -> float | None:
|
||||||
|
|
||||||
def time_now() -> float:
|
def time_now() -> float:
|
||||||
"""get current time based on timezone"""
|
"""get current time based on timezone"""
|
||||||
now = datetime.utcnow()
|
now = datetime.now(datetime.timezone.utc)
|
||||||
return (
|
return (
|
||||||
now.timestamp()
|
now.timestamp()
|
||||||
+ timezone(session[Config._session_timezone]).utcoffset(now).total_seconds()
|
+ timezone(session[Config._session_timezone]).utcoffset(now).total_seconds()
|
||||||
|
|
Loading…
Reference in a new issue