Is it possible to break lines between a bitfshift operator when setting Task dependencies in a DAG?
My DAG has 10 Tasks, and they all must be executed in sequence, with no parallelization.
I'd like to chain them in my code vertically, like below:
task_1 \
>> task_2 \
>> task_3 \
>> task_n \
Instead of horizontally:
task_1 >> task_2 >> task_3 >> task_n
I tried the \ character but I had no success with it.
Thank you