Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Jan 5, 2021
1 parent d818cdc commit 12d0a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/client_reqrep.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ async def start(self, connection: "Connection") -> "ClientResponse":
# cookies
for hdr in self.headers.getall(hdrs.SET_COOKIE, ()):
try:
new_cookie = SimpleCookie()
new_cookie = SimpleCookie() # type: SimpleCookie[Any]
new_cookie.load(hdr)
new_cookie_list = list(new_cookie.items())
self.cookies = self.cookies + new_cookie_list # type: ignore
Expand Down

0 comments on commit 12d0a25

Please sign in to comment.