Hey! Is it possible to run a flow that imports a task from a parent directory?
To my understanding, prefect runs the flow as a python script, so the import system is messed up.
I can get around this by adding folders to the path by:
sys.path.append(str(pathlib.Path(__file__).parent.parent))
Thanks!