5

How do you assign a name to a merge task in a flow?

thing_three = merge(thing_one, thing_two)

The ultimate goal is to retrieve merge using flow.get_tasks(name="thing_merger")

Thanks in advance.

Itay Livni
  • 2,143
  • 24
  • 38

1 Answers1

5

The most straightforward way to handle this would be to use:

thing_three = merge(thing_one, thing_two)

thing_three.name = "thing_merger"

Then when you call flow.get_tasks(name="thing_merger"), it'll return:

[<Task: thing_merger>]
nicholas
  • 221
  • 1
  • 4