From 9ce49c2089331ccab82cb94a62c4ea17232bcbc5 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Fri, 30 Apr 2021 09:34:33 +0200 Subject: [PATCH] stages/identification: fix unused import Signed-off-by: Jens Langhammer --- authentik/stages/identification/stage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/stages/identification/stage.py b/authentik/stages/identification/stage.py index 8a1b677c6..d483eac79 100644 --- a/authentik/stages/identification/stage.py +++ b/authentik/stages/identification/stage.py @@ -20,7 +20,7 @@ from authentik.flows.stage import ( ChallengeStageView, ) from authentik.flows.views import SESSION_KEY_APPLICATION_PRE -from authentik.stages.identification.models import IdentificationStage, UserFields +from authentik.stages.identification.models import IdentificationStage LOGGER = get_logger()