pylint-errors

E0401 (import-error)

:x: Problematic code:

# you didn't install it via pip, setup.py, wheel
import third_party

:heavy_check_mark: Correct code:

# package installed in your venv, globally, user space
import third_party

Rationale:

Used when pylint has been unable to import a module.