mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 20:59:29 +00:00
Add missing async and await keywords
This commit is contained in:
parent
2031df15fe
commit
fe6c5e542d
@ -91,7 +91,7 @@ class InlineQueryResultPhoto(InlineQueryResult):
|
||||
self.reply_markup = reply_markup
|
||||
self.input_message_content = input_message_content
|
||||
|
||||
def write(self):
|
||||
async def write(self):
|
||||
photo = types.InputWebDocument(
|
||||
url=self.photo_url,
|
||||
size=0,
|
||||
@ -117,7 +117,7 @@ class InlineQueryResultPhoto(InlineQueryResult):
|
||||
thumb=thumb,
|
||||
content=photo,
|
||||
send_message=(
|
||||
self.input_message_content.write(self.reply_markup)
|
||||
await self.input_message_content.write(self.reply_markup)
|
||||
if self.input_message_content
|
||||
else types.InputBotInlineMessageMediaAuto(
|
||||
reply_markup=self.reply_markup.write() if self.reply_markup else None,
|
||||
|
Loading…
Reference in New Issue
Block a user