mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Add mypy error codes to '# type: ignore' comments (#6379)
This commit is contained in:
@@ -68,7 +68,7 @@ class DateTime:
|
||||
def __le__(self, other: _DateTimeComparable) -> bool: ...
|
||||
def __gt__(self, other: _DateTimeComparable) -> bool: ...
|
||||
def __ge__(self, other: _DateTimeComparable) -> bool: ...
|
||||
def __eq__(self, other: _DateTimeComparable) -> bool: ... # type: ignore
|
||||
def __eq__(self, other: _DateTimeComparable) -> bool: ... # type: ignore[override]
|
||||
def make_comparable(self, other: _DateTimeComparable) -> tuple[str, str]: ... # undocumented
|
||||
def timetuple(self) -> time.struct_time: ... # undocumented
|
||||
def decode(self, data: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user