summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/events.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index f960ef8350..28d2c0896b 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -445,7 +445,6 @@ class EventsStore(SQLBaseStore):
             if e_id in event_map and event_map[e_id]
         ])
 
-
     def _get_events_txn(self, txn, event_ids, check_redacted=True,
                         get_prev_content=False, allow_rejected=False):
         return unwrap_deferred(self._get_events(
@@ -494,7 +493,7 @@ class EventsStore(SQLBaseStore):
         return event_map
 
     def _fetch_events_txn(self, txn, events, check_redacted=True,
-                      get_prev_content=False, allow_rejected=False):
+                          get_prev_content=False, allow_rejected=False):
         return unwrap_deferred(self._fetch_events(
             txn, events,
             check_redacted=check_redacted,