From 16e2584959b3a0b4752af850b7af9b68825dfcb6 Mon Sep 17 00:00:00 2001 From: oliverhnat Date: Mon, 6 Jan 2025 20:30:57 +0100 Subject: [PATCH] fix(telegram): don't print messages, just await --- telegram_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram_bot.py b/telegram_bot.py index d1a320a..5b211bf 100644 --- a/telegram_bot.py +++ b/telegram_bot.py @@ -8,4 +8,4 @@ class Telegram: async def send_message(self, message: str): - print(await self.bot.send_message(chat_id=self.channel_id, text=message)) + await self.bot.send_message(chat_id=self.channel_id, text=message)