misc: fix wrong-import-position pylint error (#55505)

This commit is contained in:
Lauréline Guérin 2021-07-09 16:19:27 +02:00
parent 077ac59dfa
commit 81a93fc2ee
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
1 changed files with 1 additions and 2 deletions

View File

@ -9,8 +9,7 @@ https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "chrono.settings")
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "chrono.settings")
application = get_wsgi_application()