diff options
Diffstat (limited to 'tests/check_framework/urls/path_compatibility/ending_with_dollar.py')
| -rw-r--r-- | tests/check_framework/urls/path_compatibility/ending_with_dollar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check_framework/urls/path_compatibility/ending_with_dollar.py b/tests/check_framework/urls/path_compatibility/ending_with_dollar.py index 0ea82a1ba6..081cc6b008 100644 --- a/tests/check_framework/urls/path_compatibility/ending_with_dollar.py +++ b/tests/check_framework/urls/path_compatibility/ending_with_dollar.py @@ -1,5 +1,5 @@ from django.urls import path urlpatterns = [ - path('ending-with-dollar$', lambda x: x), + path("ending-with-dollar$", lambda x: x), ] |
