summary refs log tree commit diff
path: root/synapse/appservice
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2021-02-09 17:50:25 +0100
committerBrendan Abolivier <babolivier@matrix.org>2021-02-09 17:50:25 +0100
commit29ae04af3b0867642ebae9fa0c2534d4a6c0c975 (patch)
tree648bd1aae3281d8299c916e27b4ef4fa4b8c3e96 /synapse/appservice
parentType hints and validation improvements. (#9321) (diff)
downloadsynapse-29ae04af3b0867642ebae9fa0c2534d4a6c0c975.tar.xz
Remove unneeded type constraints on 3rd party protocol lookup responses
Diffstat (limited to '')
-rw-r--r--synapse/appservice/api.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py
index e366a982b8..11aee50f7a 100644
--- a/synapse/appservice/api.py
+++ b/synapse/appservice/api.py
@@ -76,9 +76,6 @@ def _is_valid_3pe_result(r, field):
     fields = r["fields"]
     if not isinstance(fields, dict):
         return False
-    for k in fields.keys():
-        if not isinstance(fields[k], str):
-            return False
 
     return True