cedricdeboom commented on issue #48005: URL: https://github.com/apache/airflow/issues/48005#issuecomment-2747965511
I think it should be an empty list to maintain consistent behavior. This is important if you want to use this filtered list to expand downstream tasks upon. Also: if you'd change `return [1, 3]` to `return [1, 2, 3]` in the provided DAG, the result will be `[2]` (i.e. a single 2 wrapped inside a list) and not just `2`. So, always return a list, I'd say :) -- 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]
