John Jacoby
11/15/2021, 4:47 PMAusten Bouza
11/15/2021, 4:50 PMupstream_tasks keyword argument, e.g.
with Flow('my_flow') as flow:
    unrelated = unrelated_task()
    other = other_task(upstream_tasks=[unrelated])
This guarantees that unrelated finishes first even if other doesn’t need any values from it.John Jacoby
11/15/2021, 4:52 PMJohn Jacoby
11/15/2021, 7:11 PM