models.pyi: Add missing requests.Respons.next() (#3328)

Closes: #3207
This commit is contained in:
Utkarsh Gupta
2019-10-09 22:31:30 +05:30
committed by Sebastian Rittau
parent 3a2fdfd45d
commit bd7222c396

View File

@@ -117,6 +117,7 @@ class Response:
def __iter__(self) -> Iterator[bytes]: ...
def __enter__(self) -> Response: ...
def __exit__(self, *args: Any) -> None: ...
def next(self) -> Optional[PreparedRequest]: ...
@property
def ok(self) -> bool: ...
@property