summary refs log tree commit diff
path: root/synapse/storage/events.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-04-06 16:50:47 +0100
committerDavid Baker <dave@matrix.org>2016-04-06 16:50:47 +0100
commit0fd1cd24003b54e475985cf90db4223c3098375d (patch)
tree149540afd88c81a9bcb5c24b311995f732c38f41 /synapse/storage/events.py
parentMake pushers use the event_push_actions table instead of listening on an even... (diff)
downloadsynapse-0fd1cd24003b54e475985cf90db4223c3098375d.tar.xz
pep8
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r--synapse/storage/events.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index ceae8715ce..5be5bc01b1 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -202,7 +202,9 @@ class EventsStore(SQLBaseStore):
             txn.call_after(self._get_current_state_for_key.invalidate_all)
             txn.call_after(self.get_rooms_for_user.invalidate_all)
             txn.call_after(self.get_users_in_room.invalidate, (event.room_id,))
-            txn.call_after(self.get_users_with_pushers_in_room.invalidate, (event.room_id,))
+            txn.call_after(
+                self.get_users_with_pushers_in_room.invalidate, (event.room_id,)
+            )
             txn.call_after(self.get_joined_hosts_for_room.invalidate, (event.room_id,))
             txn.call_after(self.get_room_name_and_aliases.invalidate, (event.room_id,))