Skip to content

Commit

Permalink
fix: pragma: no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
ape364 committed Oct 24, 2024
1 parent 93861a1 commit 9d1bdc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aioetherscan/modules/extra/generators/generator_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def _parse_by_pages(
api_method: Callable, request_params: dict[str, Any]
) -> AsyncIterator[Transfer]:
page = count(1)
while True:
while True: # pragma: no cover
request_params['page'] = next(page)
try:
result = await api_method(**request_params)
Expand Down

0 comments on commit 9d1bdc7

Please # to comment.