mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
committed by
Mariusz Felisiak
parent
f68fa8b45d
commit
9c19aff7c7
@@ -2,8 +2,8 @@ from django.conf.urls.i18n import i18n_patterns
|
||||
from django.urls import path
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
view = TemplateView.as_view(template_name='dummy.html')
|
||||
view = TemplateView.as_view(template_name="dummy.html")
|
||||
|
||||
urlpatterns = i18n_patterns(
|
||||
path('prefixed/', view, name='prefixed'),
|
||||
path("prefixed/", view, name="prefixed"),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user