mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Fix get_messages return type
This commit is contained in:
parent
153439ac88
commit
b8a3d02eef
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ class GetMessages(BaseClient):
|
|||
chat_id: Union[int, str],
|
||||
message_ids: Union[int, Iterable[int]] = None,
|
||||
reply_to_message_ids: Union[int, Iterable[int]] = None,
|
||||
replies: int = 1) -> "pyrogram.Messages":
|
||||
replies: int = 1) -> Union["pyrogram.Message", "pyrogram.Messages"]:
|
||||
"""Use this method to get one or more messages that belong to a specific chat.
|
||||
You can retrieve up to 200 messages at once.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue