pylint-errors

C0411 (wrong-import-order)

:x: Problematic code:

from django.conf import settings

import os

from app.forms import MyForm

:heavy_check_mark: Correct code:

import os

from django.conf import settings

from app.forms import MyForm

Rationale:

Used when PEP8 import order is not respected (standard imports first, then third-party libraries, then local imports).