wrong-import-order / C0411#

Message emitted:

%s should be placed before %s

Description:

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

Correct code:

import os
import sys

import pylint

from . import utils

Problematic code:

import os
from . import utils
import pylint  # [wrong-import-order]
import sys  # [wrong-import-order]

Created by the imports checker.