"No name in module" error from Pylint
I got this error when my function was named start:
from views import start
It worked when I changed the name of the function.
You need a create utils/__init__.py
. This will make python aware of the submodule and also allows you to run any code you want to happen on import. If you don't want anything to run then just include a docstring.