1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/data_stores/main/room.py b/synapse/storage/data_stores/main/room.py
index edc8b10ab1..2d19b1967e 100644
--- a/synapse/storage/data_stores/main/room.py
+++ b/synapse/storage/data_stores/main/room.py
@@ -390,7 +390,7 @@ class RoomStore(RoomWorkerStore, SearchStore):
self.config = hs.config
self.register_background_update_handler(
- "insert_room_retention", self._background_insert_retention
+ "insert_room_retention", self._background_insert_retention,
)
@defer.inlineCallbacks
@@ -453,7 +453,7 @@ class RoomStore(RoomWorkerStore, SearchStore):
return False
end = yield self.runInteraction(
- "insert_room_retention", _background_insert_retention_txn
+ "insert_room_retention", _background_insert_retention_txn,
)
if end:
|