From 26e526d12476c7d5782a39629b6c53b227c276fb Mon Sep 17 00:00:00 2001 From: grassblock Date: Thu, 31 Jul 2025 11:45:10 +0800 Subject: [PATCH] chore: clean up --- adapters/tg.py | 1 - core/unpin.py | 1 - 2 files changed, 2 deletions(-) diff --git a/adapters/tg.py b/adapters/tg.py index 954469a..3b2470f 100644 --- a/adapters/tg.py +++ b/adapters/tg.py @@ -79,7 +79,6 @@ class TelegramAdapter: ) await self.dp.start_polling(bot) - print(await bot.get_updates()) async def main() -> None: diff --git a/core/unpin.py b/core/unpin.py index b96d05c..7a5fde7 100644 --- a/core/unpin.py +++ b/core/unpin.py @@ -9,7 +9,6 @@ async def handle_unpin_channel_message(message: Message): return try: regex_pattern = config.get_feature_config('unpin', message.chat.id)['regex'] - print(regex_pattern) # If a regex pattern exists, check if the message matches if regex_pattern: import re