mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-01 00:53:23 +08:00
Reduce use of Any in equality methods (#7081)
Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
@@ -95,8 +95,8 @@ class POEntry(_BaseEntry):
|
||||
def __lt__(self, other: POEntry) -> bool: ...
|
||||
def __ge__(self, other: POEntry) -> bool: ...
|
||||
def __le__(self, other: POEntry) -> bool: ...
|
||||
def __eq__(self, other: Any) -> bool: ...
|
||||
def __ne__(self, other: Any) -> bool: ...
|
||||
def __eq__(self, other: POEntry) -> bool: ... # type: ignore[override]
|
||||
def __ne__(self, other: POEntry) -> bool: ... # type: ignore[override]
|
||||
def translated(self) -> bool: ...
|
||||
def merge(self, other: POEntry) -> None: ...
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user