summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/warning_in_include.py
blob: 6978c1321050d383935224640cd4faec2a66fe94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from django.urls import include, path, re_path

urlpatterns = [
    path(
        "",
        include(
            [
                re_path("^include-with-dollar$", include([])),
            ]
        ),
    ),
]