mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-02 13:34:51 +00:00
Add missing async and await keywords
This commit is contained in:
parent
2031df15fe
commit
fe6c5e542d
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue