Bastian Röhrig
08/25/2021, 12:09 PMKevin Kho
Bastian Röhrig
08/25/2021, 2:20 PMrun_module = StartFlowRun(flow_name="run_module", project_name="tutorial", wait=True)
with Flow("flow-of-flows") as flow:
params = ...
results = run_module.map(parameters=params, run_name=get_names())
do_something.map(results)
# I would like to do something with the results of the tasks
I know that I can see whether or not the child flows were successful, and I think that information might be enough for me to build a workaround if i cannot access the results.Kevin Kho
Bastian Röhrig
08/25/2021, 2:35 PM