diff options
| author | django-bot <ops@djangoproject.com> | 2022-02-03 20:24:19 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-02-07 20:37:05 +0100 |
| commit | 9c19aff7c7561e3a82978a272ecdaad40dda5c00 (patch) | |
| tree | f0506b668a013d0063e5fba3dbf4863b466713ba /tests/urlpatterns_reverse/included_urls2.py | |
| parent | f68fa8b45dfac545cfc4111d4e52804c86db68d3 (diff) | |
Refs #33476 -- Reformatted code with Black.
Diffstat (limited to 'tests/urlpatterns_reverse/included_urls2.py')
| -rw-r--r-- | tests/urlpatterns_reverse/included_urls2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/urlpatterns_reverse/included_urls2.py b/tests/urlpatterns_reverse/included_urls2.py index ec61aecce1..5d502383c2 100644 --- a/tests/urlpatterns_reverse/included_urls2.py +++ b/tests/urlpatterns_reverse/included_urls2.py @@ -10,6 +10,6 @@ from django.urls import re_path from .views import empty_view urlpatterns = [ - re_path(r'^part/(?P<value>\w+)/$', empty_view, name='part'), - re_path(r'^part2/(?:(?P<value>\w+)/)?$', empty_view, name='part2'), + re_path(r"^part/(?P<value>\w+)/$", empty_view, name="part"), + re_path(r"^part2/(?:(?P<value>\w+)/)?$", empty_view, name="part2"), ] |
