Skip to content

Commit

Permalink
Keys should be materialized if dict is changing in lopp (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pliner committed Aug 18, 2021
1 parent 1e73d3f commit 368e252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aio_request/aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def _resolve(self) -> None:

keys_to_pop = []

for key in self._results.keys():
for key in list(self._results.keys()):
try:
(h, p, f) = key
self._results[key] = await self._resolver.resolve(h, p, f)
Expand Down

0 comments on commit 368e252

Please sign in to comment.