summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-04-02 11:15:19 +0100
committerErik Johnston <erik@matrix.org>2019-04-02 11:20:06 +0100
commitc75e2017f16bf18127f4f70f69100b8343a139c4 (patch)
tree4e85259a4db02600aee024ad22b73d1aee05cc57 /synapse/handlers
parentNewsfile (diff)
downloadsynapse-c75e2017f16bf18127f4f70f69100b8343a139c4.tar.xz
Fixup docstrings
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/identity.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py
index 4c127ba125..3eb112bf9d 100644
--- a/synapse/handlers/identity.py
+++ b/synapse/handlers/identity.py
@@ -150,14 +150,16 @@ class IdentityHandler(BaseHandler):
 
         Args:
             mxid (str): Matrix user ID of binding to be removed
-            threepid (dict): Dict with medium & address of binding to be removed
+            threepid (dict): Dict with medium & address of binding to be
+                removed, and an optional id_server.
 
         Raises:
             SynapseError: If we failed to contact the identity server
 
         Returns:
             Deferred[bool]: True on success, otherwise False if the identity
-            server doesn't support unbinding
+            server doesn't support unbinding (or no identity server found to
+            contact).
         """
         if threepid.get("id_server"):
             id_servers = [threepid["id_server"]]