David Cupp
10/10/2022, 5:48 PM1 A = Task(...).submit()
...
5 B = Task(...).submit(wait_for=[A])
...
9 _ = Task(...).submit(wait_for=[B])
If an except is throw after line 1 and before line 9, is there an easy way to ensure that Task "A" does not start?Bianca Hoch
10/10/2022, 10:04 PM.fn()
as suggested at the bottom of the article.David Cupp
10/10/2022, 10:06 PM