YD
08/17/2021, 6:52 PMsource_code folder, that have local imports, and that we need to create a python package in order to use local code.
is this correct or is there some way around it ?Zanie
PYTHONPATH to include your code folders, but using a python package is generally better practice.Kevin Kho
working_dir path of your RunConfiguration. Docs .This will resolve those importsYD
08/17/2021, 7:27 PMflow.run_config = LocalRun(working_dir="/path/to/working-directory")
with the working_dir one above the project dir
worked
thanks