From 70807c83c69442db258d08db52e2616983032c8e Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Thu, 16 Apr 2020 13:58:29 +0100 Subject: lint --- synapse/handlers/e2e_keys.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/synapse/handlers/e2e_keys.py b/synapse/handlers/e2e_keys.py index 9c1fbaa9b5..3fbb0d104a 100644 --- a/synapse/handlers/e2e_keys.py +++ b/synapse/handlers/e2e_keys.py @@ -1003,7 +1003,9 @@ class E2eKeysHandler(object): key_contents = remote_result[key_type][remote_user_id] key_type = key_type[:-5] # Remove the "_keys" from the key type - yield self.store.set_e2e_cross_signing_key(user_id, key_type, key_contents) + yield self.store.set_e2e_cross_signing_key( + user_id, key_type, key_contents + ) # The key_type variable passed to this function is in the form # "self_signing","master" etc. Whereas the results returned from -- cgit 1.4.1