Applied Black's 2024 stable style.

https://github.com/psf/black/releases/tag/24.1.0
This commit is contained in:
Mariusz Felisiak 2024-01-26 12:45:07 +01:00 committed by GitHub
parent 3f6d939c62
commit 305757aec1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
235 changed files with 809 additions and 602 deletions

View file

@ -248,8 +248,9 @@ class SecurityMiddlewareTest(SimpleTestCase):
(("strict-origin", "origin"), "strict-origin,origin"),
)
for value, expected in tests:
with self.subTest(value=value), override_settings(
SECURE_REFERRER_POLICY=value
with (
self.subTest(value=value),
override_settings(SECURE_REFERRER_POLICY=value),
):
self.assertEqual(
self.process_response().headers["Referrer-Policy"],
@ -287,8 +288,11 @@ class SecurityMiddlewareTest(SimpleTestCase):
"""
tests = ["same-origin", "same-origin-allow-popups", "unsafe-none"]
for value in tests:
with self.subTest(value=value), override_settings(
SECURE_CROSS_ORIGIN_OPENER_POLICY=value,
with (
self.subTest(value=value),
override_settings(
SECURE_CROSS_ORIGIN_OPENER_POLICY=value,
),
):
self.assertEqual(
self.process_response().headers["Cross-Origin-Opener-Policy"],