Ethienne Marcelin
02/02/2023, 9:44 AM@flow
def my_flow():
    a = subflow1(...)
    b = subflow2(...)
    c = subflow3(a)
Would it be possible to create a graph from this and raise an error because subflow2 is a dangling node ?Peyton Runyan
02/02/2023, 2:08 PM