Skip to content

Commit

Permalink
Fix more string escape warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz authored and jpic committed Jan 9, 2024
1 parent 302db96 commit d45c294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test_project/select2_generic_foreign_key/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

urlpatterns = [
url(
'test/(?P<pk>\d+)/$',
r'test/(?P<pk>\d+)/$',
generic.UpdateView.as_view(
model=TModel,
form_class=TForm,
Expand Down
2 changes: 1 addition & 1 deletion test_project/select2_many_to_many/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
name='select2_many_to_many_autocomplete',
),
url(
'test/(?P<pk>\d+)/$',
r'test/(?P<pk>\d+)/$',
generic.UpdateView.as_view(
model=TModel,
form_class=TForm,
Expand Down

0 comments on commit d45c294

Please sign in to comment.