This is an automated email from the ASF dual-hosted git repository.
shahar1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 473e33259cd Remove stale `dag_` parameter from create_test_pipeline
docstring (#68787)
473e33259cd is described below
commit 473e33259cdc54d5c9ecdd1d4e010e4f9e857e08
Author: Kenan Adel <[email protected]>
AuthorDate: Fri Jun 26 10:12:41 2026 +0300
Remove stale `dag_` parameter from create_test_pipeline docstring (#68787)
---
airflow-core/src/airflow/example_dags/example_skip_dag.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/airflow-core/src/airflow/example_dags/example_skip_dag.py
b/airflow-core/src/airflow/example_dags/example_skip_dag.py
index a2fe914c035..f5eed85f2de 100644
--- a/airflow-core/src/airflow/example_dags/example_skip_dag.py
+++ b/airflow-core/src/airflow/example_dags/example_skip_dag.py
@@ -48,7 +48,6 @@ def create_test_pipeline(suffix, trigger_rule):
:param str suffix: Suffix to append to the operator task_ids
:param str trigger_rule: TriggerRule for the join task
- :param DAG dag_: The DAG to run the operators on
"""
skip_operator = EmptySkipOperator(task_id=f"skip_operator_{suffix}")
always_true = EmptyOperator(task_id=f"always_true_{suffix}")