Run even without proxies 🤦

This commit is contained in:
Casey 2024-07-03 22:49:06 +03:00
parent 82eaff5683
commit 5e8496eaaa
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 5 additions and 0 deletions

View File

@ -131,6 +131,11 @@ async def amain():
await asyncio.gather(*[
mgr.writer(settings["proxies"][i % n_proxies]) for i in range(settings["n_bots"])
], return_exceptions=True)
else:
await asyncio.gather(*[
mgr.writer() for _ in range(settings["n_bots"])
], return_exceptions=True)