Skip to content

Commit

Permalink
Merge pull request #248 from JCHacking/fix_aiohttp3.9_writer_can_not_…
Browse files Browse the repository at this point in the history
…await

fix: aiohttp 3.9 _writer can't await
  • Loading branch information
pnuckowski authored Nov 17, 2023
2 parents b444d72 + 768dbfc commit 444aa49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aioresponses/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def _build_response(self, url: 'Union[URL, str]',
method=method,
headers=CIMultiDictProxy(CIMultiDict(**request_headers)),
)
kwargs['writer'] = Mock()
kwargs['writer'] = None
kwargs['continue100'] = None
kwargs['timer'] = TimerNoop()
kwargs['traces'] = []
Expand Down

0 comments on commit 444aa49

Please sign in to comment.