quaint-diamond-37493
06/09/2023, 9:06 AMhallowed-mouse-14616
06/09/2023, 1:27 PMquaint-diamond-37493
06/09/2023, 1:42 PMhallowed-mouse-14616
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?quaint-diamond-37493
06/09/2023, 2:22 PMfreezing-airport-6809
freezing-airport-6809
freezing-airport-6809
hallowed-mouse-14616
06/09/2023, 3:07 PMquaint-diamond-37493
06/09/2023, 3:11 PMgentle-balloon-89943
06/09/2023, 3:39 PMquaint-diamond-37493
06/09/2023, 3:41 PMgentle-balloon-89943
06/09/2023, 3:52 PM