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 efb6079 commit 872f04cCopy full SHA for 872f04c
tests/integration/test_actor_charge.py
@@ -65,11 +65,11 @@ async def ppe_actor(
65
return apify_client_async.actor(ppe_actor_build)
66
67
68
-def retry_counter(retry_count: int) -> Iterable[tuple[bool, int]]:
69
- for retry in range(retry_count - 1):
+def retry_counter(total_attempts: int) -> Iterable[tuple[bool, int]]:
+ for retry in range(total_attempts - 1):
70
yield False, retry
71
72
- yield True, retry_count - 1
+ yield True, total_attempts - 1
73
74
75
async def test_actor_charge_basic(
0 commit comments