Slightly change docs for events (#668)

This commit is contained in:
Lonami Exo
2018-03-24 12:41:42 +01:00
parent 69d283a296
commit 13e59983af
2 changed files with 24 additions and 2 deletions

View File

@@ -37,8 +37,10 @@ class _EventBuilder(abc.ABC):
only matching chats will be handled.
blacklist_chats (:obj:`bool`, optional):
Whether to treat the the list of chats as a blacklist (if
it matches it will NOT be handled) or a whitelist (default).
Whether to treat the chats as a blacklist instead of
as a whitelist (default). This means that every chat
will be handled *except* those specified in ``chats``
which will be ignored if ``blacklist_chats=True``.
"""
def __init__(self, chats=None, blacklist_chats=False):
self.chats = chats