1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py
index 46a797b4ba..5a6b63350b 100644
--- a/synapse/federation/transport/client.py
+++ b/synapse/federation/transport/client.py
@@ -859,7 +859,7 @@ class TransportLayerClient(object):
@log_function
def set_group_joinable(self, destination, group_id, requester_user_id,
- content):
+ content):
"""Sets whether a group is joinable without an invite or knock
"""
path = PREFIX + "/groups/%s/joinable" % (group_id,)
@@ -872,7 +872,6 @@ class TransportLayerClient(object):
ignore_backoff=True,
)
-
@log_function
def delete_group_summary_user(self, destination, group_id, requester_user_id,
user_id, role_id):
|