diff --git a/lib/tz.py b/lib/tz.py index cc99025b..a9adcd8f 100644 --- a/lib/tz.py +++ b/lib/tz.py @@ -64,7 +64,6 @@ class FixedOffsetTimezone(datetime.tzinfo): return cls._cache[key] except KeyError: tz = datetime.tzinfo.__new__(cls, offset, name) - tz.__init__(offset, name) cls._cache[key] = tz return tz