From 057628b0180f1e34a26cd14be2b7f48b6327d9ba Mon Sep 17 00:00:00 2001 From: Azrenbeth <7782548+Azrenbeth@users.noreply.github.com> Date: Tue, 24 Aug 2021 16:29:07 +0100 Subject: Added (unneccesary?) parentheses to try and make python3.6 happy --- synapse/handlers/saml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synapse/handlers/saml.py b/synapse/handlers/saml.py index 6ef2b0de02..d21d0b327f 100644 --- a/synapse/handlers/saml.py +++ b/synapse/handlers/saml.py @@ -611,7 +611,7 @@ class Saml2UserMappingProvider: self.saml_response_to_user_attributes_callback: Optional[ SAML_RESPONSE_TO_USER_ATTRIBUTES_CALLBACK ] = None - self.saml_attributes: Tuple[Set[str], Set[str]] = set(), set() + self.saml_attributes: Tuple[Set[str], Set[str]] = (set(), set()) self.module_has_registered = False def register_saml2_user_mapping_provider_callbacks( -- cgit 1.4.1