summary refs log tree commit diff
path: root/synapse/handlers/oidc_handler.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-01-19 10:19:25 +0000
committerErik Johnston <erik@matrix.org>2021-01-19 10:19:25 +0000
commitbed4fa29fd03696acbfee8c6952ca8692ff6d722 (patch)
tree1448960716d841caeb779e720d81b5db0dd8986c /synapse/handlers/oidc_handler.py
parentMerge remote-tracking branch 'origin/develop' into matrix-org-hotfixes (diff)
parentQuote pip install with brackets to avoid shell interpretation. (#9151) (diff)
downloadsynapse-bed4fa29fd03696acbfee8c6952ca8692ff6d722.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/handlers/oidc_handler.py')
-rw-r--r--synapse/handlers/oidc_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/oidc_handler.py b/synapse/handlers/oidc_handler.py

index 5e5fda7b2f..ba686d74b2 100644 --- a/synapse/handlers/oidc_handler.py +++ b/synapse/handlers/oidc_handler.py
@@ -85,7 +85,7 @@ class OidcHandler: self._token_generator = OidcSessionTokenGenerator(hs) self._providers = { p.idp_id: OidcProvider(hs, self._token_generator, p) for p in provider_confs - } + } # type: Dict[str, OidcProvider] async def load_metadata(self) -> None: """Validate the config and load the metadata from the remote endpoint.