From 29ae04af3b0867642ebae9fa0c2534d4a6c0c975 Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Tue, 9 Feb 2021 17:50:25 +0100 Subject: Remove unneeded type constraints on 3rd party protocol lookup responses --- synapse/appservice/api.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'synapse') 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 -- cgit 1.4.1