diff options
Diffstat (limited to 'synapse/handlers/saml.py')
-rw-r--r-- | synapse/handlers/saml.py | 2 |
1 files changed, 1 insertions, 1 deletions
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( |