From 7c9ac5e53f728a8c7cd7a00c471d68de17e40e5f Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Mon, 25 Oct 2021 09:34:42 -0400 Subject: [PATCH] Suppress import ordering style error --- configurations/asgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configurations/asgi.py b/configurations/asgi.py index 7a28d29..da9401b 100644 --- a/configurations/asgi.py +++ b/configurations/asgi.py @@ -2,7 +2,7 @@ from . import importer importer.install() -from django.core.asgi import get_asgi_application +from django.core.asgi import get_asgi_application # noqa: E402 # this is just for the crazy ones application = get_asgi_application()