Here is the current directory setup:
dir_a:
__init__.py
one.py
two.py
Here is one.py:
from dir_a.two import TwoClass
From inside dir_a, running
"python -m pdb one.py"
"ModuleNotFoundError: No module named 'dir_a'"
From inside pdb, I've tried appending the absolute path to dir_a, but still having trouble finding and being able to import my Two class.