Docstring
This commit is contained in:
parent
45cd2b0233
commit
87deec824a
|
@ -178,6 +178,11 @@ class Filter(object):
|
|||
self.filter_json = filter_json
|
||||
|
||||
def check(self, event):
|
||||
"""Checks whether the filter matches the given event.
|
||||
|
||||
Returns:
|
||||
bool: True if the event matches
|
||||
"""
|
||||
literal_keys = {
|
||||
"rooms": lambda v: event.room_id == v,
|
||||
"senders": lambda v: event.sender == v,
|
||||
|
|
Loading…
Reference in New Issue