Python logoPython/
PYL-W0406

Module imports itselfPYL-W0406

Major severityMajor
Bug Risk categoryBug Risk

The module is importing itself. This is not recommended.

Consider a module foo.py

import foo
import bar

...

Here, module foo is trying to import a module named foo.