Remove duplicate definitions (#8483)

This commit is contained in:
Nikita Sobolev
2022-08-04 19:55:18 +03:00
committed by GitHub
parent 103c2f39d2
commit a376da87bd
20 changed files with 4 additions and 101 deletions

View File

@@ -20,10 +20,6 @@ class DecompressReader(RawIOBase):
trailing_error: type[Exception] | tuple[type[Exception], ...] = ...,
**decomp_args: Any,
) -> None: ...
def readable(self) -> bool: ...
def close(self) -> None: ...
def seekable(self) -> bool: ...
def readinto(self, b: WriteableBuffer) -> int: ...
def read(self, size: int = ...) -> bytes: ...
def seek(self, offset: int, whence: int = ...) -> int: ...
def tell(self) -> int: ...