Module imports itselfPYL-W0406
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.
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.