From 3a19bdfdd50eaa27447836910928253a13577114 Mon Sep 17 00:00:00 2001 From: emmatveev Date: Sat, 30 Nov 2024 15:10:40 +0300 Subject: [PATCH] fix --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 1fad95b..20c1eab 100644 --- a/bot.py +++ b/bot.py @@ -121,7 +121,7 @@ class Core(TasksHandlerMixin): if self.message.video_note: self.send(chat_to_send, 'send_video_note', data=self.message.video_note.file_id) if self.message.animation: - self.send(chat_to_send, 'send_animation', animation=self.message.animation.file_id) + self.send(chat_to_send, 'send_animation', data=self.message.animation.file_id) self.send_message(self.message_text, chat_to_send) def start_new_dialog(self, chat_ids):