pylint-errors

E0402 (relative-beyond-top-level)

:x: Problematic code:

# you don't have in a current directory forms.py module
from . import forms

:heavy_check_mark: Correct code:

# forms.py available in a current directory
from . import forms

Rationale:

Used when a relative import tries to access too many levels in the current package.