From b5dfbc992b2bc7d74c0adcaad868cd14f0ea0c6e Mon Sep 17 00:00:00 2001 From: Jonathan Lucas Date: Fri, 6 Jun 2025 17:45:01 -0500 Subject: [PATCH] Removed a comment --- telegram_helper.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/telegram_helper.py b/telegram_helper.py index 3a4ebfd..59f5263 100644 --- a/telegram_helper.py +++ b/telegram_helper.py @@ -123,10 +123,6 @@ class TelegramHelper: return LogicResult(success=False, response_text=None, error_message=str(e)) async def handle_message_batching(self, update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: - """ - Handles incoming messages, batches them if they are from the same user - within MESSAGE_DEBOUNCE_SECONDS, and then processes the combined message. - """ if not update.message or not update.message.text: # Ignore empty messages return