darwinyip opened a new issue #12145: URL: https://github.com/apache/airflow/issues/12145
**Description** Allow for setting upstreams/downstreams of tasks contained in nested lists **Use case / motivation** Be able to do this: ``` t1 >> [[t2 >> t3 >> t4], [t5 >> t6 >> t7]] >> t8 ``` Instead, currently it would be set up as: ``` t1 >> t2 >> t3 >> t4 >> t8 t1 >> t5 >> t6 >> t7 >> t8 ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
