I have the following folder structure
app/ app/helpers/ app/helpers/methodhelper.py app/methods/ app/methods/method.py
and I'm trying to import a function from methodhelper.py inside method.py
so I tried the following:
import app.helpers.methodhelper OR from app.helpers.methodhelper import function1 OR import helpers.methodhelper
and I get:
"No module named app.helpers.methodhelper"
Important to note: helpers/__init__.py
already exists
How should this be done ?