From 73a22d145e887cf422d5c05b7efbc361ad666349 Mon Sep 17 00:00:00 2001 From: JR Heard Date: Thu, 17 Oct 2019 17:52:07 -0700 Subject: [PATCH] Add missing @property to Response.next() stub --- 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 ae62c79af800..ee98344c4ddd 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: ...