diff --git a/async-bot.py b/async-bot.py index 857cb0a..1d165a6 100644 --- a/async-bot.py +++ b/async-bot.py @@ -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) +