Applied Black's 2025 stable style.

https://github.com/psf/black/releases/tag/25.1.0
This commit is contained in:
Mariusz Felisiak 2025-03-01 19:41:37 +01:00 committed by GitHub
parent ea1e3703be
commit ff3aaf036f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
45 changed files with 210 additions and 182 deletions

View file

@ -7158,7 +7158,7 @@ class ReadonlyTest(AdminFieldExtractionMixin, TestCase):
url = reverse("admin:admin_views_pizza_change", args=(pizza.pk,))
with self.settings(LANGUAGE_CODE="fr"):
response = self.client.get(url)
self.assertContains(response, "<label>Toppings\u00A0:</label>", html=True)
self.assertContains(response, "<label>Toppings\u00a0:</label>", html=True)
@override_settings(ROOT_URLCONF="admin_views.urls")