Skip to content

Commit

Permalink
Caught a typo (bugfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmmx committed Aug 12, 2021
1 parent a28c578 commit 39a952e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/range_streams/async_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ async def async_fetch_urlset(
)
raise ValueError(msg)
# assert self.client is not None # give mypy a clue
processed = await self.fetch_and_process(urls=urls, client=client)
processed = await self.fetch_and_process(urls=urls, client=self.client)
return processed

async def fetch_and_process(self, urls: Iterator[str], client):
Expand Down

0 comments on commit 39a952e

Please sign in to comment.