Annotate known magic-method return types (#9131)

This commit is contained in:
Nikita Sobolev
2022-11-08 21:28:42 +03:00
committed by GitHub
parent c0e9038f0d
commit 62a6c3d616
87 changed files with 172 additions and 172 deletions
@@ -19,4 +19,4 @@ class Cursor:
def urlsafe(self): ...
def __eq__(self, other): ...
def __ne__(self, other): ...
def __hash__(self): ...
def __hash__(self) -> int: ...
@@ -4,7 +4,7 @@ UNDEFINED: Any
class Key:
def __new__(cls, *path_args, **kwargs): ...
def __hash__(self): ...
def __hash__(self) -> int: ...
def __eq__(self, other): ...
def __ne__(self, other): ...
def __lt__(self, other): ...