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