mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Move starred expressions at the end
This commit is contained in:
parent
0f09989d67
commit
ba3203865f
1 changed files with 10 additions and 10 deletions
|
|
@ -604,10 +604,10 @@ class Client:
|
|||
file=file,
|
||||
ttl_seconds=ttl_seconds
|
||||
),
|
||||
**self.markdown.parse(caption),
|
||||
silent=disable_notification or None,
|
||||
reply_to_msg_id=reply_to_message_id,
|
||||
random_id=self.rnd_id()
|
||||
random_id=self.rnd_id(),
|
||||
**self.markdown.parse(caption)
|
||||
)
|
||||
)
|
||||
except FilePartMissing as e:
|
||||
|
|
@ -682,10 +682,10 @@ class Client:
|
|||
types.DocumentAttributeFilename(os.path.basename(audio))
|
||||
]
|
||||
),
|
||||
**self.markdown.parse(caption),
|
||||
silent=disable_notification or None,
|
||||
reply_to_msg_id=reply_to_message_id,
|
||||
random_id=self.rnd_id()
|
||||
random_id=self.rnd_id(),
|
||||
**self.markdown.parse(caption)
|
||||
)
|
||||
)
|
||||
except FilePartMissing as e:
|
||||
|
|
@ -741,10 +741,10 @@ class Client:
|
|||
types.DocumentAttributeFilename(os.path.basename(document))
|
||||
]
|
||||
),
|
||||
**self.markdown.parse(caption),
|
||||
silent=disable_notification or None,
|
||||
reply_to_msg_id=reply_to_message_id,
|
||||
random_id=self.rnd_id()
|
||||
random_id=self.rnd_id(),
|
||||
**self.markdown.parse(caption)
|
||||
)
|
||||
)
|
||||
except FilePartMissing as e:
|
||||
|
|
@ -816,10 +816,10 @@ class Client:
|
|||
)
|
||||
]
|
||||
),
|
||||
**self.markdown.parse(caption),
|
||||
silent=disable_notification or None,
|
||||
reply_to_msg_id=reply_to_message_id,
|
||||
random_id=self.rnd_id()
|
||||
random_id=self.rnd_id(),
|
||||
**self.markdown.parse(caption)
|
||||
)
|
||||
)
|
||||
except FilePartMissing as e:
|
||||
|
|
@ -882,10 +882,10 @@ class Client:
|
|||
)
|
||||
]
|
||||
),
|
||||
**self.markdown.parse(caption),
|
||||
silent=disable_notification or None,
|
||||
reply_to_msg_id=reply_to_message_id,
|
||||
random_id=self.rnd_id()
|
||||
random_id=self.rnd_id(),
|
||||
**self.markdown.parse(caption)
|
||||
)
|
||||
)
|
||||
except FilePartMissing as e:
|
||||
|
|
|
|||
Loading…
Reference in a new issue