I've a Python program with the following structure:
sdk
-> jobs
->release
In the release folde I have a script called my_release.py. In that I'm trying to import a property called PROPERTY_1 from sdk/__init__.py
. I tried adding from sdk import PROPERTY_1
. When I run the script I get ModuleNotFoundError: No module named 'sdk'
. How do I import this?