From 5706c8ba34bc4efbe589b08b799f7d1b2fb72821 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Mon, 26 Apr 2021 16:24:28 +0100 Subject: fix isort and mypy linting --- synapse/handlers/profile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'synapse/handlers/profile.py') diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index 469614fed6..ee8f868791 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py @@ -87,8 +87,8 @@ class ProfileHandler(BaseHandler): ) if len(self.hs.config.replicate_user_profiles_to) > 0: - reactor.callWhenRunning(self._do_assign_profile_replication_batches) - reactor.callWhenRunning(self._start_replicate_profiles) + reactor.callWhenRunning(self._do_assign_profile_replication_batches) # type: ignore + reactor.callWhenRunning(self._start_replicate_profiles) # type: ignore # Add a looping call to replicate_profiles: this handles retries # if the replication is unsuccessful when the user updated their # profile. -- cgit 1.5.1