From 9f269faf53cb6f8964829d7d32aafd63004008b9 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 15 Nov 2022 13:46:00 +0100 Subject: [PATCH] stages/authenticator_*: cleanup Signed-off-by: Jens Langhammer --- authentik/stages/authenticator_static/stage.py | 1 - authentik/stages/authenticator_totp/stage.py | 1 - 2 files changed, 2 deletions(-) diff --git a/authentik/stages/authenticator_static/stage.py b/authentik/stages/authenticator_static/stage.py index 35464f96d..b5a8d6dd2 100644 --- a/authentik/stages/authenticator_static/stage.py +++ b/authentik/stages/authenticator_static/stage.py @@ -4,7 +4,6 @@ from django_otp.plugins.otp_static.models import StaticDevice, StaticToken from rest_framework.fields import CharField, ListField from authentik.flows.challenge import ChallengeResponse, ChallengeTypes, WithUserInfoChallenge -from authentik.flows.planner import PLAN_CONTEXT_PENDING_USER from authentik.flows.stage import ChallengeStageView from authentik.stages.authenticator_static.models import AuthenticatorStaticStage diff --git a/authentik/stages/authenticator_totp/stage.py b/authentik/stages/authenticator_totp/stage.py index 856f02793..fdead56f2 100644 --- a/authentik/stages/authenticator_totp/stage.py +++ b/authentik/stages/authenticator_totp/stage.py @@ -13,7 +13,6 @@ from authentik.flows.challenge import ( ChallengeTypes, WithUserInfoChallenge, ) -from authentik.flows.planner import PLAN_CONTEXT_PENDING_USER from authentik.flows.stage import ChallengeStageView from authentik.stages.authenticator_totp.models import AuthenticatorTOTPStage from authentik.stages.authenticator_totp.settings import OTP_TOTP_ISSUER