1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py
index 4c3db891c8..2f34535498 100644
--- a/synapse/storage/stats.py
+++ b/synapse/storage/stats.py
@@ -76,9 +76,7 @@ class StatsStore(StateDeltasStore):
# we no longer need to perform clean-up, but we will give ourselves
# the potential to reintroduce it in the future – so documentation
# will still encourage the use of this no-op handler.
- self.register_noop_background_update(
- "populate_stats_cleanup"
- )
+ self.register_noop_background_update("populate_stats_cleanup")
def quantise_stats_time(self, ts):
"""
|