fix(telegram): don't print messages, just await

This commit is contained in:
2025-01-06 20:30:57 +01:00
parent eb9f37f805
commit 16e2584959

View File

@@ -8,4 +8,4 @@ class Telegram:
async def send_message(self, message: str): 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)