Skip to content

Commit

Permalink
Fix typo (#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
laggardkernel authored Jun 16, 2021
1 parent f8cb7f5 commit 47d712c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions httpx/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1678,10 +1678,10 @@ def extract_cookies(self, response: Response) -> None:
"""
Loads any cookies based on the response `Set-Cookie` headers.
"""
urlib_response = self._CookieCompatResponse(response)
urllib_response = self._CookieCompatResponse(response)
urllib_request = self._CookieCompatRequest(response.request)

self.jar.extract_cookies(urlib_response, urllib_request) # type: ignore
self.jar.extract_cookies(urllib_response, urllib_request) # type: ignore

def set_cookie_header(self, request: Request) -> None:
"""
Expand Down

0 comments on commit 47d712c

Please sign in to comment.