Skip to content

Commit 47d712c

Browse files
Fix typo (#1688)
1 parent f8cb7f5 commit 47d712c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httpx/_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1678,10 +1678,10 @@ def extract_cookies(self, response: Response) -> None:
16781678
"""
16791679
Loads any cookies based on the response `Set-Cookie` headers.
16801680
"""
1681-
urlib_response = self._CookieCompatResponse(response)
1681+
urllib_response = self._CookieCompatResponse(response)
16821682
urllib_request = self._CookieCompatRequest(response.request)
16831683

1684-
self.jar.extract_cookies(urlib_response, urllib_request) # type: ignore
1684+
self.jar.extract_cookies(urllib_response, urllib_request) # type: ignore
16851685

16861686
def set_cookie_header(self, request: Request) -> None:
16871687
"""

0 commit comments

Comments
 (0)