2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-29 05:18:10 +00:00

Add missing await

This commit is contained in:
Dan 2019-08-07 14:08:06 +02:00
parent e96a74f728
commit 5cfc412af2

View File

@ -76,6 +76,6 @@ class EditInlineText(BaseClient):
id=utils.unpack_inline_message_id(inline_message_id),
no_webpage=disable_web_page_preview or None,
reply_markup=reply_markup.write() if reply_markup else None,
**self.parser.parse(text, parse_mode)
**await self.parser.parse(text, parse_mode)
)
)