diff options
| author | django-bot <ops@djangoproject.com> | 2022-02-03 20:24:19 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-02-07 20:37:05 +0100 |
| commit | 9c19aff7c7561e3a82978a272ecdaad40dda5c00 (patch) | |
| tree | f0506b668a013d0063e5fba3dbf4863b466713ba /tests/i18n/patterns/urls/namespace.py | |
| parent | f68fa8b45dfac545cfc4111d4e52804c86db68d3 (diff) | |
Refs #33476 -- Reformatted code with Black.
Diffstat (limited to 'tests/i18n/patterns/urls/namespace.py')
| -rw-r--r-- | tests/i18n/patterns/urls/namespace.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/i18n/patterns/urls/namespace.py b/tests/i18n/patterns/urls/namespace.py index 19cd5694da..466303ac6d 100644 --- a/tests/i18n/patterns/urls/namespace.py +++ b/tests/i18n/patterns/urls/namespace.py @@ -2,11 +2,11 @@ from django.urls import path, re_path from django.utils.translation import gettext_lazy as _ from django.views.generic import TemplateView -view = TemplateView.as_view(template_name='dummy.html') +view = TemplateView.as_view(template_name="dummy.html") -app_name = 'account' +app_name = "account" urlpatterns = [ - re_path(_(r'^register/$'), view, name='register'), - re_path(_(r'^register-without-slash$'), view, name='register-without-slash'), - path(_('register-as-path/'), view, name='register-as-path'), + re_path(_(r"^register/$"), view, name="register"), + re_path(_(r"^register-without-slash$"), view, name="register-without-slash"), + path(_("register-as-path/"), view, name="register-as-path"), ] |
