Delete many redundant method redefinitions (#6877)

This commit is contained in:
Alex Waygood
2022-01-09 19:21:03 +00:00
committed by GitHub
parent bb6a6e3421
commit 4e046163b5
26 changed files with 0 additions and 50 deletions

View File

@@ -32,7 +32,6 @@ class Token:
address: tuple[str | bytes, int]
id: str | bytes | int | None
def __init__(self, typeid: bytes | str | None, address: tuple[str | bytes, int], id: str | bytes | int | None) -> None: ...
def __repr__(self) -> str: ...
def __getstate__(self) -> tuple[str | bytes | None, tuple[str | bytes, int], str | bytes | int | None]: ...
def __setstate__(self, state: tuple[str | bytes | None, tuple[str | bytes, int], str | bytes | int | None]) -> None: ...