I have the following file structure
In main.py I am attempting to import a class which is located in property.py.
When I try putting the following at the top of main.py
from B.C.property import Property
I get:
ModuleNotFoundError: No module named 'B'
If I instead try
from ..B.C.property import Property
I get
ImportError: attempted relative import with no known parent package
Any help appreciated!