diff options
| author | django-bot <ops@djangoproject.com> | 2022-02-08 12:09:55 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-02-08 12:15:38 +0100 |
| commit | 6a682b38e75d4c975b4c4493565a59f1bc14397c (patch) | |
| tree | 0bd9cda550bea26238656d9f120d769e8b41bb9e /tests/auth_tests/urls_admin.py | |
| parent | e73ce08888e6f34d3f050377cfd2fbb733be94a9 (diff) | |
[4.0.x] Refs #33476 -- Reformatted code with Black.
Backport of 9c19aff7c7561e3a82978a272ecdaad40dda5c00 from main.
Diffstat (limited to 'tests/auth_tests/urls_admin.py')
| -rw-r--r-- | tests/auth_tests/urls_admin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auth_tests/urls_admin.py b/tests/auth_tests/urls_admin.py index 21b0073210..a606402404 100644 --- a/tests/auth_tests/urls_admin.py +++ b/tests/auth_tests/urls_admin.py @@ -9,10 +9,10 @@ from django.contrib.auth.urls import urlpatterns from django.urls import path # Create a silo'd admin site for just the user/group admins. -site = admin.AdminSite(name='auth_test_admin') +site = admin.AdminSite(name="auth_test_admin") site.register(User, UserAdmin) site.register(Group, GroupAdmin) urlpatterns += [ - path('admin/', site.urls), + path("admin/", site.urls), ] |
