mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-30 11:36:58 +08:00
Add mypy error codes to type: ignores, remove unused ignores (#7504)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
co-authored by
Jelle Zijlstra
parent
4308915e06
commit
340c6c97ed
@@ -58,8 +58,8 @@ class DateTime:
|
||||
def __le__(self, other: _dateTimeComp) -> bool: ...
|
||||
def __gt__(self, other: _dateTimeComp) -> bool: ...
|
||||
def __ge__(self, other: _dateTimeComp) -> bool: ...
|
||||
def __eq__(self, other: _dateTimeComp) -> bool: ... # type: ignore
|
||||
def __ne__(self, other: _dateTimeComp) -> bool: ... # type: ignore
|
||||
def __eq__(self, other: _dateTimeComp) -> bool: ... # type: ignore[override]
|
||||
def __ne__(self, other: _dateTimeComp) -> bool: ... # type: ignore[override]
|
||||
def timetuple(self) -> struct_time: ...
|
||||
def __cmp__(self, other: _dateTimeComp) -> int: ...
|
||||
def decode(self, data: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user