Peyton Runyan
02/25/2021, 7:34 PMwith Flow as f:
x, y = func_1():
no_return_func():
res = final_func(x,y)
Using the example above, how do I signal for final_func
to wait on no_return_func
?
Do I just add a third argument to the function and have no_return_func
return True
? Or is there a cleaner way?Josh Greenhalgh
02/25/2021, 7:37 PMJosh Greenhalgh
02/25/2021, 7:38 PM.set_upstream
Peyton Runyan
02/25/2021, 7:43 PMDave
02/25/2021, 7:48 PMZanie