From c8cf8bf804760573fc3161963f96103b31399853 Mon Sep 17 00:00:00 2001 From: Nikita Aksenov Date: Wed, 26 Mar 2025 12:58:18 +0300 Subject: [PATCH] increased retries --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 18ed932..2a3f01a 100644 --- a/main.py +++ b/main.py @@ -146,7 +146,7 @@ async def get_message_text() -> str: return text async def send_deadlines(chat_id: int) -> None: - retries = 3 + retries = 20 for attempt in range(retries): try: text = await get_message_text()