diff --git a/authentik/stages/authenticator_static/views.py b/authentik/stages/authenticator_static/views.py index 2d4fb048b..13e5517bb 100644 --- a/authentik/stages/authenticator_static/views.py +++ b/authentik/stages/authenticator_static/views.py @@ -34,7 +34,8 @@ class UserSettingsView(LoginRequiredMixin, TemplateView): class DisableView(LoginRequiredMixin, View): """Disable Static Tokens for user""" - def get(self, request: HttpRequest) -> HttpResponse: + # pylint: disable=unused-argument + def get(self, request: HttpRequest, **kwargs) -> HttpResponse: """Delete all the devices for user""" devices = StaticDevice.objects.filter(user=request.user, confirmed=True) devices.delete()