1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/storage/events_worker.py b/synapse/storage/events_worker.py
index c7dddb2bbe..9d7027b943 100644
--- a/synapse/storage/events_worker.py
+++ b/synapse/storage/events_worker.py
@@ -683,7 +683,9 @@ class EventsWorkerStore(SQLBaseStore):
Deferred[int]
"""
return self.runInteraction(
- "get_current_state_event_counts", self._get_current_state_event_counts_txn, room_id
+ "get_current_state_event_counts",
+ self._get_current_state_event_counts_txn,
+ room_id,
)
def _get_current_state_event_counts_txn(self, txn, room_id):
|