We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93861a1 commit 9d1bdc7Copy full SHA for 9d1bdc7
aioetherscan/modules/extra/generators/generator_utils.py
@@ -84,7 +84,7 @@ async def _parse_by_pages(
84
api_method: Callable, request_params: dict[str, Any]
85
) -> AsyncIterator[Transfer]:
86
page = count(1)
87
- while True:
+ while True: # pragma: no cover
88
request_params['page'] = next(page)
89
try:
90
result = await api_method(**request_params)
0 commit comments