From 3add16df4977bd96021f1e481c6d0450a4b1d82b Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 17 Apr 2018 13:23:16 +0100 Subject: [PATCH] pep8 again --- synapse/handlers/profile.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index 61496cd60..8332771c1 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py @@ -53,7 +53,9 @@ class ProfileHandler(BaseHandler): if len(self.hs.config.replicate_user_profiles_to) > 0: reactor.callWhenRunning(self._assign_profile_replication_batches) reactor.callWhenRunning(self._replicate_profiles) - self.clock.looping_call(self._replicate_profiles, self.PROFILE_REPLICATE_INTERVAL) + self.clock.looping_call( + self._replicate_profiles, self.PROFILE_REPLICATE_INTERVAL + ) @defer.inlineCallbacks def _assign_profile_replication_batches(self):