Felix Ruess
06/09/2023, 9:06 AMDan Rammer (hamersaw)
06/09/2023, 1:27 PMFelix Ruess
06/09/2023, 1:42 PMDan Rammer (hamersaw)
06/09/2023, 2:07 PM@task
def task_a() -> (int, int):
# ...
@task
def task_b(m: int) -> int:
# ...
@task
def task_c(n: int, l: int) -> int:
# ...
@workflow
def wf() -> int:
x, y = task_a()
z = task_b(m=x)
return task_c(n=y, l=z)
would create exactly what you mentioned. is that not the case? or do you want to UI to automatically remove the a->c line because it's redundant?Felix Ruess
06/09/2023, 2:22 PMKetan (kumare3)
Dan Rammer (hamersaw)
06/09/2023, 3:07 PMFelix Ruess
06/09/2023, 3:11 PMTim Sheiner
06/09/2023, 3:39 PMFelix Ruess
06/09/2023, 3:41 PMTim Sheiner
06/09/2023, 3:52 PM