Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 29, 2022
1 parent 6ee3b3e commit 414ecfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
re_path(
r"^resolving1/(.+)/(.+)/$", views.resolving_view, name="positional-resolving"
),
re_path(r"^resolving2/(?P<arg1>.+)/(?P<arg2>.+)/$", views.resolving_view),
path("resolving2/<path:arg1>/<path:arg2>/", views.resolving_view),
re_path(r"^resolving3/(.+)/$", views.resolving_view, {"arg2": "default"}),
re_path(r"^regular/(?P<title>.*)/$", views.regular_view),
re_path(r"^template_response/(?P<title>.*)/$", views.template_response_view),
Expand Down

0 comments on commit 414ecfd

Please sign in to comment.