I'm trying to run a script test1.py which calls model.py. However I encounter an import error when Python tries to import module.py from within model.py. How can I get test1.py to find this?
├── model
├ ├── model.py
├ └── module.py
└─── tests
└── test1.py
In test1.py
from model.model import blah
In model.py
import module
When I run test1.py, Python complains that it can't see module.py:
ModuleNotFoundError: No module named 'module'
FYI I am working in Python3