summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-09-25 10:25:00 +0100
committerRichard van der Hoff <richard@matrix.org>2019-09-25 10:25:00 +0100
commitfe2bdc7f550eccfb6d8bae36a66b7ddaf4a913c1 (patch)
tree2a0b7a01eddfc584aeb797b3d953c9ea940f23ce
parentRefactor the user-interactive auth handling (diff)
downloadsynapse-fe2bdc7f550eccfb6d8bae36a66b7ddaf4a913c1.tar.xz
fix flake8 fails
-rw-r--r--synapse/handlers/auth.py1
-rw-r--r--synapse/handlers/ui_auth/__init__.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py
index fd93e88535..f920c2f6c1 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -37,6 +37,7 @@ from synapse.api.errors import (
 )
 from synapse.api.ratelimiting import Ratelimiter
 from synapse.handlers.ui_auth import INTERACTIVE_AUTH_CHECKERS
+from synapse.handlers.ui_auth.checkers import UserInteractiveAuthChecker
 from synapse.logging.context import defer_to_thread
 from synapse.module_api import ModuleApi
 from synapse.types import UserID
diff --git a/synapse/handlers/ui_auth/__init__.py b/synapse/handlers/ui_auth/__init__.py
index 83eddb87b3..824f37f8f8 100644
--- a/synapse/handlers/ui_auth/__init__.py
+++ b/synapse/handlers/ui_auth/__init__.py
@@ -19,4 +19,4 @@ TODO: move more stuff out of AuthHandler in here.
 
 """
 
-from synapse.handlers.ui_auth.checkers import INTERACTIVE_AUTH_CHECKERS
+from synapse.handlers.ui_auth.checkers import INTERACTIVE_AUTH_CHECKERS  # noqa: F401