Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit 1057910

Browse files
committed
Linting
Caught by my own CI change earlier, oops.
1 parent 93c9f3a commit 1057910

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

synapse/push/push_rule_evaluator.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,10 @@ def matches(
190190
"""
191191
if condition["kind"] == "event_match":
192192
return self._event_match(condition, user_id, self._event, self._value_cache)
193-
elif condition["kind"] in ("related_event_match", "inverse_related_event_match"):
193+
elif condition["kind"] in (
194+
"related_event_match",
195+
"inverse_related_event_match",
196+
):
194197
if not self._related_event:
195198
return False
196199
is_match = self._event_match(

0 commit comments

Comments
 (0)