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 f074945 commit 58d2674Copy full SHA for 58d2674
src/apify_client/clients/resource_clients/run.py
@@ -494,7 +494,7 @@ async def charge(
494
raise ValueError('event_name is required for charging an event')
495
496
idempotency_key = idempotency_key or (
497
- f'{self.resource_id}-{event_name}-{int(time.time() * 1000)}-{''.join(random.choices(string.ascii_letters + string.digits, k=6))}'
+ f'{self.resource_id}-{event_name}-{int(time.time() * 1000)}-{"".join(random.choices(string.ascii_letters + string.digits, k=6))}'
498
)
499
500
response = await self.http_client.call(
0 commit comments