This is an automated email from the ASF dual-hosted git repository. jedcunningham pushed a commit to branch v2-9-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit d6e397fe11c5b8840f06f1588707da2f442a86eb Author: Amogh Desai <[email protected]> AuthorDate: Mon Apr 15 13:53:50 2024 +0530 Correcting an example taskflow example (#39015) (cherry picked from commit bfd347759d5e86ec3d10c1d78306c44d47aadfca) --- docs/apache-airflow/tutorial/taskflow.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/apache-airflow/tutorial/taskflow.rst b/docs/apache-airflow/tutorial/taskflow.rst index 6d5b3bed25..fbfe7aaf6b 100644 --- a/docs/apache-airflow/tutorial/taskflow.rst +++ b/docs/apache-airflow/tutorial/taskflow.rst @@ -453,6 +453,7 @@ Building this dependency is shown in the code below: """ order_data_file = "/tmp/order_data.csv" order_data_df = pd.read_csv(order_data_file) + return order_data_df file_task = FileSensor(task_id="check_file", filepath="/tmp/order_data.csv")
