diff --git a/pyrogram/types/messages_and_media/message.py b/pyrogram/types/messages_and_media/message.py index 513cef18..d9b8065b 100644 --- a/pyrogram/types/messages_and_media/message.py +++ b/pyrogram/types/messages_and_media/message.py @@ -712,6 +712,7 @@ class Message(Object, Update): Use as a shortcut for: .. code-block:: python + client.get_media_group( chat_id=message.chat.id, message_id=message.message_id @@ -719,6 +720,7 @@ class Message(Object, Update): Example: .. code-block:: python + message.get_media_group() Returns: diff --git a/pyrogram/types/user_and_chats/chat.py b/pyrogram/types/user_and_chats/chat.py index 75c454b5..200a31eb 100644 --- a/pyrogram/types/user_and_chats/chat.py +++ b/pyrogram/types/user_and_chats/chat.py @@ -871,7 +871,7 @@ class Chat(Object): limit (``int``, *optional*): Limits the number of members to be retrieved. Only applicable to supergroups and channels. - Defaults to 200, which is also the maximum server limit allowed per method call. + Defaults to 200, which is also the maximum server limit allowed per method call [1]_. query (``str``, *optional*): Query string to filter members based on their display names and usernames.