jedcunningham commented on issue #23425:
URL: https://github.com/apache/airflow/issues/23425#issuecomment-1115503105

   Interesting. Looks like it's an issue with expanding on static lists, as 
this results in 6:
   
   ```
       @task
       def first():
           return [2, 4, 8]
   
       @task
       def second():
           return [5, 10]
   
       @task
       def add(x: int, y: int):
           return x + y
   
       added_values = add.expand(x=first(), y=second())
   ```


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