fix(telegram): don't print messages, just await
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user