From bf862d907957e46b97419565a5bb90314d074ee4 Mon Sep 17 00:00:00 2001 From: JR Heard Date: Fri, 18 Oct 2019 01:23:16 -0700 Subject: [PATCH] Add missing @property to Response.next() stub (#3384) --- third_party/2and3/requests/models.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/2and3/requests/models.pyi b/third_party/2and3/requests/models.pyi index ae62c79af..ee98344c4 100644 --- a/third_party/2and3/requests/models.pyi +++ b/third_party/2and3/requests/models.pyi @@ -117,6 +117,7 @@ class Response: def __iter__(self) -> Iterator[bytes]: ... def __enter__(self) -> Response: ... def __exit__(self, *args: Any) -> None: ... + @property def next(self) -> Optional[PreparedRequest]: ... @property def ok(self) -> bool: ...