In airflow, can I shorten these task dependency lines?
a >> b >> c >> f >> G
a >> b >> d >> f >> G
To
a >> b
b >> c
b >> d
c >> f
d >> f
f >> g
These are equivalent? Any difference in timings or efficiencies? Reason for asking that if you are using a code formatter line length becomes and issue with the first style and longer variable task names.
Any recommendations or suggestions?