diff --git a/async-bot.py b/async-bot.py index f1c5a9a..5d27064 100644 --- a/async-bot.py +++ b/async-bot.py @@ -258,8 +258,8 @@ class AsyncBotManager: self._active.add(bot_index) try: await sio.receive(0.1) - except socketio.exceptions.TimeoutError: - print(f"read failed in {bot_index}") + except TimeoutError: + pass async def __aenter__(self): self._listener_task = asyncio.create_task(self.listener())