summaryrefslogtreecommitdiff
path: root/lib/tz.py
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-11-28 10:32:55 +0200
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2017-11-28 16:06:52 +0000
commit283de270987dbd17a3cf2285da60722d4b5cc001 (patch)
tree3e5d55fb26a4abedeccf4305c0003339cfdba2d7 /lib/tz.py
parent08b479bc105af9ee50ce3d67d7661bd85fc6437f (diff)
downloadpsycopg2-283de270987dbd17a3cf2285da60722d4b5cc001.tar.gz
Remove redundant parentheses
Diffstat (limited to 'lib/tz.py')
-rw-r--r--lib/tz.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tz.py b/lib/tz.py
index 92a1604..d593175 100644
--- a/lib/tz.py
+++ b/lib/tz.py
@@ -75,7 +75,7 @@ class FixedOffsetTimezone(datetime.tzinfo):
def __getinitargs__(self):
offset_mins = self._offset.seconds // 60 + self._offset.days * 24 * 60
- return (offset_mins, self._name)
+ return offset_mins, self._name
def utcoffset(self, dt):
return self._offset