Add missing return type to read (#3707)

This commit is contained in:
Rune Tynan
2020-02-03 01:07:24 -05:00
committed by GitHub
parent 9e70c157c9
commit 3e9f03015b

View File

@@ -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): ...