From 9982d60790a2d8ceeeffadac592f12dacc098e29 Mon Sep 17 00:00:00 2001 From: Aaron Ramirez Date: Wed, 20 Nov 2024 11:52:17 -0700 Subject: [PATCH] Update fundamentals.rst properly show 'default_args=default_args,' like the comment implies --- docs/apache-airflow/tutorial/fundamentals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/tutorial/fundamentals.rst b/docs/apache-airflow/tutorial/fundamentals.rst index c8c47c66284a..2f5d95c5d1fb 100644 --- a/docs/apache-airflow/tutorial/fundamentals.rst +++ b/docs/apache-airflow/tutorial/fundamentals.rst @@ -97,7 +97,7 @@ that defines the ``dag_id``, which serves as a unique identifier for your DAG. We also pass the default argument dictionary that we just defined and define a ``schedule`` of 1 day for the DAG. -.. exampleinclude:: /../../airflow/example_dags/tutorial.py +.. exampleinclude:: /../../airflow/example_dags/tutorial.py # the example shown here defines the default args manually again whereas, "We also pass the default argument dictionary that we just defined" implies "default_args=default_args," :language: python :start-after: [START instantiate_dag] :end-before: [END instantiate_dag]