Update inline_query_result_animation.py (#435)

add missing await
This commit is contained in:
Ripe 2020-07-02 11:27:29 +00:00 committed by GitHub
parent ff012ecd1c
commit dd9b55f256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ class InlineQueryResultAnimation(InlineQueryResult):
self.reply_markup = reply_markup
self.input_message_content = input_message_content
def write(self):
async def write(self):
animation = types.InputWebDocument(
url=self.animation_url,
size=0,
@ -121,7 +121,7 @@ class InlineQueryResultAnimation(InlineQueryResult):
if self.input_message_content
else types.InputBotInlineMessageMediaAuto(
reply_markup=self.reply_markup.write() if self.reply_markup else None,
**(Parser(None)).parse(self.caption, self.parse_mode)
**await(Parser(None)).parse(self.caption, self.parse_mode)
)
)
)