Remove duplicated references

This commit is contained in:
Dan 2019-01-07 21:49:25 +01:00
parent ebb2ad5aab
commit 1bbf048b7a

View File

@ -58,7 +58,7 @@ class IterChatMembers(BaseClient):
query (``str``, *optional*): query (``str``, *optional*):
Query string to filter members based on their display names and usernames. Query string to filter members based on their display names and usernames.
Defaults to "" (empty string) [2]_. Defaults to "" (empty string).
filter (``str``, *optional*): filter (``str``, *optional*):
Filter used to select the kind of members you want to retrieve. Only applicable for supergroups Filter used to select the kind of members you want to retrieve. Only applicable for supergroups
@ -71,11 +71,6 @@ class IterChatMembers(BaseClient):
*"administrators"* - chat administrators only. *"administrators"* - chat administrators only.
Defaults to *"all"*. Defaults to *"all"*.
.. [1] Server limit: on supergroups, you can get up to 10,000 members for a single query and up to 200 members
on channels.
.. [2] A query string is applicable only for *"all"*, *"kicked"* and *"restricted"* filters only.
Returns: Returns:
A generator yielding :obj:`ChatMember <pyrogram.ChatMember>` objects. A generator yielding :obj:`ChatMember <pyrogram.ChatMember>` objects.