PY3.C0411
Wrong import order
Used when PEP8 import order is not respected (standard imports first, then third-party libraries, then local imports).
Noncompliant Code:
Copy
from django.conf import settings
import os
from app.forms import MyForm
Compliant Code:
Copy
import os
from django.conf import settings
from app.forms import MyForm