summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/warning_in_include.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_framework/urls/warning_in_include.py')
-rw-r--r--tests/check_framework/urls/warning_in_include.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/check_framework/urls/warning_in_include.py b/tests/check_framework/urls/warning_in_include.py
index 8ec846be1e..6978c13210 100644
--- a/tests/check_framework/urls/warning_in_include.py
+++ b/tests/check_framework/urls/warning_in_include.py
@@ -1,7 +1,12 @@
from django.urls import include, path, re_path
urlpatterns = [
- path('', include([
- re_path('^include-with-dollar$', include([])),
- ])),
+ path(
+ "",
+ include(
+ [
+ re_path("^include-with-dollar$", include([])),
+ ]
+ ),
+ ),
]