I refactored some of my code and put it in individual directories, and suddenly the interpreter can't find any of my custom modules.
My package structure looks like this:
etl3
__init__.py
inst_config
__init__.py
config3.py
inst_utils
__init__.py
etc...
jira
filetorun.py
etc...
I'm trying to run the file in the jira directory. When it was just under the etl3\
directory it can find it due to them being in the same directory. Once nested however, it cannot find them.
I run the python interpreter, and print my sys.path
. I can see the path to C:\etl3\inst_config\
on there, which is why I'm confused as to why my file in the jira
directory can't find it.