Hey all, please tell me how to set up the task lau...
# ask-community
k
Hey all, please tell me how to set up the task launch sequence. For example at me one task deletes the data, the second task interposes the data. I need to run the delete first, and after insert data
k
You can do:
Copy code
with Flow(...) as flow:
    a = task_a()
    b = task_b(upstream_tasks=[a])
k
thanks