diff options
author | Azrenbeth <7782548+Azrenbeth@users.noreply.github.com> | 2021-08-24 16:29:07 +0100 |
---|---|---|
committer | Azrenbeth <7782548+Azrenbeth@users.noreply.github.com> | 2021-08-24 16:29:07 +0100 |
commit | 057628b0180f1e34a26cd14be2b7f48b6327d9ba (patch) | |
tree | 0c505276b98141c90ffb63e10275e3821b958046 | |
parent | created changelog (diff) | |
download | synapse-057628b0180f1e34a26cd14be2b7f48b6327d9ba.tar.xz |
Added (unneccesary?) parentheses to try and make python3.6 happy
-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( |