1
0
mirror of https://github.com/django/django.git synced 2025-01-02 14:35:59 +00:00
django/tests/check_framework/urls/warning_in_include.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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([])),
]
),
),
]