Skip to content

Commit 414ecfd

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6ee3b3e commit 414ecfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
re_path(
1010
r"^resolving1/(.+)/(.+)/$", views.resolving_view, name="positional-resolving"
1111
),
12-
re_path(r"^resolving2/(?P<arg1>.+)/(?P<arg2>.+)/$", views.resolving_view),
12+
path("resolving2/<path:arg1>/<path:arg2>/", views.resolving_view),
1313
re_path(r"^resolving3/(.+)/$", views.resolving_view, {"arg2": "default"}),
1414
re_path(r"^regular/(?P<title>.*)/$", views.regular_view),
1515
re_path(r"^template_response/(?P<title>.*)/$", views.template_response_view),

0 commit comments

Comments
 (0)