dstandish commented on PR #31616:
URL: https://github.com/apache/airflow/pull/31616#issuecomment-1569825039

   i think that with something like `setup_teardown` we could handle list 
wrapping.. maybe wouldn't need to wrap 
   ```
   with setup_teardown(s1 >> t1, s2 >> [t2, t3]):
       w1 >> w2
   ```
   
   equiv to
   ```
   s1 >> t1
   s1 >> w1 >> w2 >> t1
   s2 >> w1 >> w2 >> [t2, t3]
   s2 >> [t2, t3]
   ```
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to