Remove unneeded ignores (#2624)

This commit is contained in:
Sebastian Rittau
2018-11-23 18:51:44 +01:00
committed by Jelle Zijlstra
parent 8c8dc5658f
commit 517d2b6012
8 changed files with 16 additions and 16 deletions

View File

@@ -281,9 +281,9 @@ class datetime(date):
def __gt__(self, other: datetime) -> bool: ... # type: ignore
def __add__(self, other: timedelta) -> datetime: ...
@overload # type: ignore
def __sub__(self, other: datetime) -> timedelta: ... # type: ignore
@overload # type: ignore
def __sub__(self, other: timedelta) -> datetime: ... # type: ignore
def __sub__(self, other: datetime) -> timedelta: ...
@overload
def __sub__(self, other: timedelta) -> datetime: ...
def __hash__(self) -> int: ...
def weekday(self) -> int: ...
def isoweekday(self) -> int: ...