Skip to content

Commit 9d1bdc7

Browse files
committed
fix: pragma: no cover
1 parent 93861a1 commit 9d1bdc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aioetherscan/modules/extra/generators/generator_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async def _parse_by_pages(
8484
api_method: Callable, request_params: dict[str, Any]
8585
) -> AsyncIterator[Transfer]:
8686
page = count(1)
87-
while True:
87+
while True: # pragma: no cover
8888
request_params['page'] = next(page)
8989
try:
9090
result = await api_method(**request_params)

0 commit comments

Comments
 (0)