1
0
mirror of https://github.com/django/django.git synced 2025-01-04 07:26:38 +00:00
django/tests/check_framework/urls/warning_in_include.py

13 lines
214 B
Python
Raw Normal View History

from django.urls import include, path, re_path
urlpatterns = [
path(
"",
include(
[
re_path("^include-with-dollar$", include([])),
]
),
),
]