mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
committed by
Mariusz Felisiak
parent
f68fa8b45d
commit
9c19aff7c7
@@ -7,8 +7,8 @@ from django.urls import include, path, re_path
|
||||
from .views import empty_view
|
||||
|
||||
urlpatterns = [
|
||||
re_path('^e-places/([0-9]+)/$', empty_view, name='extra-places'),
|
||||
re_path(r'^e-people/(?P<name>\w+)/$', empty_view, name='extra-people'),
|
||||
path('', include('urlpatterns_reverse.included_urls2')),
|
||||
re_path(r'^prefix/(?P<prefix>\w+)/', include('urlpatterns_reverse.included_urls2')),
|
||||
re_path("^e-places/([0-9]+)/$", empty_view, name="extra-places"),
|
||||
re_path(r"^e-people/(?P<name>\w+)/$", empty_view, name="extra-people"),
|
||||
path("", include("urlpatterns_reverse.included_urls2")),
|
||||
re_path(r"^prefix/(?P<prefix>\w+)/", include("urlpatterns_reverse.included_urls2")),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user