Greetings again,
To elaborate a little on the setup I have:
module/
__init__.py
dag.py
utils/
accessory_functions.py
__init__.py
This entire folder structure is uploaded as is to gcs/dev on the bucket.
Now, in the dag.py I was accessing the module as follows:
from module.utils.accessory_functions import *
This returned a ModuleNotFoundError on the GUI but also when I logged into the Scheduler and went to /gcs/dags/dev/module and ran `python dag.py`.
Now I have switched to a relative import:
from utils.accessory_functions import *
This still returns a ModuleNotFoundError on the GUI, yet I am able to run the file via `python dag.py` without this error, which further confounds me.
Best regards,
Boris