From e2722c098bcc1bfd2a21ea4ab86bff5cbe84076d Mon Sep 17 00:00:00 2001 From: red Date: Fri, 5 Dec 2025 13:51:20 +0000 Subject: [PATCH] Sleepy --- bot/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/main.py b/bot/main.py index 24e185e..3a86425 100644 --- a/bot/main.py +++ b/bot/main.py @@ -161,14 +161,14 @@ async def main_loop(): while True: try: await process_chats() - await asyncio.sleep(10) + await asyncio.sleep(5) except asyncio.CancelledError: print("cancelled normally (ok knowing my luck the error is gonna be this one every single time even tho it never actually is an error like this!) cute puppy: Hiiii") break except Exception as e: print(f"error {e}") - await asyncio.sleep(10) + await asyncio.sleep(5) if __name__ == "__main__": asyncio.run(main_loop())