From 2ce6f3db4aecfc6ee41590f1f99c0d8ed77f19fb Mon Sep 17 00:00:00 2001 From: hkc Date: Wed, 3 Jul 2024 23:08:28 +0300 Subject: [PATCH] Removed delay on missed pixels --- async-bot.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/async-bot.py b/async-bot.py index 1d165a6..08c06c3 100644 --- a/async-bot.py +++ b/async-bot.py @@ -89,8 +89,6 @@ class AsyncBotManager: "index": index }) await asyncio.sleep(0.25) - else: - await asyncio.sleep(0.001) async def __aenter__(self): self._listener_task = asyncio.create_task(self.listener())