mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Add missing return type to read (#3707)
This commit is contained in:
@@ -11,6 +11,6 @@ class DecompressReader(io.RawIOBase):
|
||||
def close(self): ...
|
||||
def seekable(self): ...
|
||||
def readinto(self, b): ...
|
||||
def read(self, size: int = ...): ...
|
||||
def read(self, size: int = ...) -> bytes: ...
|
||||
def seek(self, offset, whence=...): ...
|
||||
def tell(self): ...
|
||||
|
||||
Reference in New Issue
Block a user