From 55c983680234c635b7c686d119bd69991205210c Mon Sep 17 00:00:00 2001 From: varun kumar Date: Fri, 25 Aug 2023 22:21:41 +0530 Subject: [PATCH] Apply isort for sorted imports --- allauth/account/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allauth/account/views.py b/allauth/account/views.py index 974f9a27be..98f7e14a38 100644 --- a/allauth/account/views.py +++ b/allauth/account/views.py @@ -9,6 +9,7 @@ from django.shortcuts import redirect from django.urls import reverse, reverse_lazy from django.utils.decorators import method_decorator +from django.views.decorators.cache import never_cache from django.views.decorators.debug import sensitive_post_parameters from django.views.generic.base import TemplateResponseMixin, TemplateView, View from django.views.generic.edit import FormView @@ -17,7 +18,6 @@ from allauth.decorators import rate_limit from allauth.exceptions import ImmediateHttpResponse from allauth.utils import get_form_class, get_request_param -from django.views.decorators.cache import never_cache from . import app_settings, signals from .adapter import get_adapter