From 6855cc6f363b2d4dc84bbade517a4b4d685d0d0c Mon Sep 17 00:00:00 2001 From: Tidiane Date: Tue, 31 Oct 2023 11:40:04 +0000 Subject: [PATCH] fixup! Upgrade django to 4.2 --- apps/guide/settings/test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/guide/settings/test.py b/apps/guide/settings/test.py index 1016aa57..b639c2e8 100644 --- a/apps/guide/settings/test.py +++ b/apps/guide/settings/test.py @@ -14,4 +14,6 @@ PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"] # Use non-manifest static files in tests, to avoid the need to run `collectstatic` -STORAGES["staticfiles"] = {"BACKEND": "whitenoise.storage.CompressedStaticFilesStorage"} +STORAGES["staticfiles"] = { # noqa: F405 + "BACKEND": "whitenoise.storage.CompressedStaticFilesStorage" +}