From 803025463dc22e2bdda216f2162e5c9b138b83fd Mon Sep 17 00:00:00 2001 From: "Crane.z" <1481445951@qq.com> Date: Mon, 9 Mar 2026 14:46:16 +0800 Subject: [PATCH] fix: remove unreachable return in MFA context builder --- apps/authentication/views/mfa.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/authentication/views/mfa.py b/apps/authentication/views/mfa.py index 58a3b490b..867b7f9d5 100644 --- a/apps/authentication/views/mfa.py +++ b/apps/authentication/views/mfa.py @@ -95,7 +95,6 @@ class UserLoginMFAView(mixins.AuthMixin, FormView): kwargs.update(mfa_context) kwargs['show_otp_hint'] = show_otp_hint return kwargs - return kwargs class UserLoginMFAFaceView(UserFaceCaptureView, UserLoginMFAView):