From fee28c598c3c02d7980074cca0f9deacfbe6a444 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Tue, 24 Sep 2024 22:35:50 +0200 Subject: [PATCH] chore(wsgi): Don't set an invalid settings module --- src/app/wsgi.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/wsgi.py b/src/app/wsgi.py index bfbc45a..63c3d04 100644 --- a/src/app/wsgi.py +++ b/src/app/wsgi.py @@ -7,10 +7,6 @@ For more information on this file, see https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/ """ -import os - from django.core.wsgi import get_wsgi_application -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "api.settings") - application = get_wsgi_application()