From 4c7b23ab6802d83be4e72e209fcaff0b4faaa572 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 13 Mar 2021 21:20:32 +0100 Subject: style: do not override the loaded time module --- poezio/common.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/poezio/common.py b/poezio/common.py index 9f218160..69e41c83 100644 --- a/poezio/common.py +++ b/poezio/common.py @@ -496,15 +496,15 @@ def unique_prefix_of(a: str, b: str) -> str: return a -def to_utc(time: datetime) -> datetime: +def to_utc(time_: datetime) -> datetime: """Convert a datetime-aware time zone into raw UTC""" tzone = datetime.now().astimezone().tzinfo - if time.tzinfo is not None: # Convert to UTC - time = time.astimezone(tz=timezone.utc) + if time_.tzinfo is not None: # Convert to UTC + time_ = time_.astimezone(tz=timezone.utc) else: # Assume local tz, convert to URC - time = time.replace(tzinfo=tzone).astimezone(tz=timezone.utc) + time = time_.replace(tzinfo=tzone).astimezone(tz=timezone.utc) # Return an offset-naive datetime - return time.replace(tzinfo=None) + return time_.replace(tzinfo=None) # http://xmpp.org/extensions/xep-0045.html#errorstatus -- cgit v1.2.3