diff options
author | Patrick Cloke <patrickc@matrix.org> | 2021-02-19 08:19:54 -0500 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2021-02-19 08:19:54 -0500 |
commit | c4a55ac4a425f1c98a6f52ffea8b6e00815591be (patch) | |
tree | de76ffd62750b11b7f79425884d0b27bf93562c2 /synapse/handlers | |
parent | Merge tag 'v1.28.0rc1' into develop (diff) | |
download | synapse-c4a55ac4a425f1c98a6f52ffea8b6e00815591be.tar.xz |
Fix style checking due to updated black.
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/profile.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/handlers/profile.py b/synapse/handlers/profile.py index d933dd3f01..dd59392bda 100644 --- a/synapse/handlers/profile.py +++ b/synapse/handlers/profile.py @@ -310,8 +310,7 @@ class ProfileHandler(BaseHandler): await self._update_join_states(requester, target_user) async def on_profile_query(self, args: JsonDict) -> JsonDict: - """Handles federation profile query requests. - """ + """Handles federation profile query requests.""" if not self.hs.config.allow_profile_lookup_over_federation: raise SynapseError( |