Skip to content

Commit 872f04c

Browse files
committed
Rename a parameter
1 parent efb6079 commit 872f04c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/test_actor_charge.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ async def ppe_actor(
6565
return apify_client_async.actor(ppe_actor_build)
6666

6767

68-
def retry_counter(retry_count: int) -> Iterable[tuple[bool, int]]:
69-
for retry in range(retry_count - 1):
68+
def retry_counter(total_attempts: int) -> Iterable[tuple[bool, int]]:
69+
for retry in range(total_attempts - 1):
7070
yield False, retry
7171

72-
yield True, retry_count - 1
72+
yield True, total_attempts - 1
7373

7474

7575
async def test_actor_charge_basic(

0 commit comments

Comments
 (0)