ron819 commented on a change in pull request #4191: [AIRFLOW-3350] Explain how 
to use Bitshift Composition with lists
URL: https://github.com/apache/incubator-airflow/pull/4191#discussion_r233821248
 
 

 ##########
 File path: docs/concepts.rst
 ##########
 @@ -240,6 +240,19 @@ We can put this all together to build a simple pipeline:
                 python_callable=lambda: print("GOODBYE!"))
         )
 
+Bitshift can also be used with lists. For example:
+
+.. code:: python
+
+    op1 >> [op2, op3]
+
+is equivalent to:
+
+.. code:: python
+
+    op1.set_downstream(op2)
 
 Review comment:
   @xnuinside I know that @kaxil started a discussion on mailing list to 
resolve the 2 docs websites issue. any way not part of this tiny PR :)
   
   I don't know why tests are failing for the 2nd commit but it's unrelated to 
this PR.
   
   So if no other comments this can be merged :)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to