diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-03-03 10:54:44 +0000 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2020-03-03 10:54:44 +0000 |
commit | 65c73cdfec1876a9fec2fd2c3a74923cd146fe0b (patch) | |
tree | 9a348a434d7cd9493da3dc3ff306aa331fc0ad42 /synapse/config | |
parent | Merge branch 'rav/sso-confirm-whitelist' into 'release-v1.11.1' (diff) | |
download | synapse-65c73cdfec1876a9fec2fd2c3a74923cd146fe0b.tar.xz |
Factor out complete_sso_login and expose it to the Module API
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/sso.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/sso.py b/synapse/config/sso.py index 56299bd4e4..95762689bc 100644 --- a/synapse/config/sso.py +++ b/synapse/config/sso.py @@ -16,7 +16,7 @@ from typing import Any, Dict import pkg_resources -from ._base import Config, ConfigError +from ._base import Config class SSOConfig(Config): |