mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
parent
f68fa8b45d
commit
9c19aff7c7
1992 changed files with 139577 additions and 96284 deletions
|
@ -5,9 +5,13 @@ from . import views
|
|||
|
||||
class URLObject:
|
||||
urlpatterns = [
|
||||
path('inner/', views.empty_view, name='urlobject-view'),
|
||||
re_path(r'^inner/(?P<arg1>[0-9]+)/(?P<arg2>[0-9]+)/$', views.empty_view, name='urlobject-view'),
|
||||
re_path(r'^inner/\+\\\$\*/$', views.empty_view, name='urlobject-special-view'),
|
||||
path("inner/", views.empty_view, name="urlobject-view"),
|
||||
re_path(
|
||||
r"^inner/(?P<arg1>[0-9]+)/(?P<arg2>[0-9]+)/$",
|
||||
views.empty_view,
|
||||
name="urlobject-view",
|
||||
),
|
||||
re_path(r"^inner/\+\\\$\*/$", views.empty_view, name="urlobject-special-view"),
|
||||
]
|
||||
|
||||
def __init__(self, app_name, namespace=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue