diff options
Diffstat (limited to 'tests/auth_tests/urls.py')
| -rw-r--r-- | tests/auth_tests/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/urls.py b/tests/auth_tests/urls.py index 35bdbbb3a8..392355f9b3 100644 --- a/tests/auth_tests/urls.py +++ b/tests/auth_tests/urls.py @@ -15,7 +15,7 @@ from django.views.decorators.cache import never_cache class CustomRequestAuthenticationForm(AuthenticationForm): def __init__(self, request, *args, **kwargs): assert isinstance(request, HttpRequest) - super(CustomRequestAuthenticationForm, self).__init__(request, *args, **kwargs) + super().__init__(request, *args, **kwargs) @never_cache |
