From e5a9330a91d9d79adc4735e8850357d37c234c5c Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Thu, 19 Jan 2023 18:30:05 +0000 Subject: reordering import statements using isort --- wsgi.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'wsgi.py') diff --git a/wsgi.py b/wsgi.py index 86da323..be477b3 100644 --- a/wsgi.py +++ b/wsgi.py @@ -8,7 +8,9 @@ https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ """ import os + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") from django.core.wsgi import get_wsgi_application + application = get_wsgi_application() -- cgit v1.2.3