Fixing timezone utc type (#568)

* switching to timezone type

* taking a shot at 2.7
This commit is contained in:
dlinnemeyer
2016-09-23 07:39:52 -05:00
committed by Matthias Kramm
parent 76c0850eb2
commit bbf0ac2d1f
2 changed files with 4 additions and 13 deletions

View File

@@ -14,9 +14,9 @@ class tzinfo:
def fromutc(self, dt: datetime) -> datetime: ...
class timezone(tzinfo):
utc = ... # type: tzinfo
min = ... # type: tzinfo
max = ... # type: tzinfo
utc = ... # type: timezone
min = ... # type: timezone
max = ... # type: timezone
def __init__(self, offset: timedelta, name: str = ...) -> None: ...
def __hash__(self) -> int: ...