diff --git a/docs/apache-airflow/concepts/dags.rst b/docs/apache-airflow/concepts/dags.rst index c564ef85b7efc..f8715287d0cf7 100644 --- a/docs/apache-airflow/concepts/dags.rst +++ b/docs/apache-airflow/concepts/dags.rst @@ -397,7 +397,7 @@ For example, here is a DAG that uses a ``for`` loop to define some Tasks:: with DAG("loop_example") as dag: first = DummyOperator(task_id="first") - last = DummyOperator( task_id="last") + last = DummyOperator(task_id="last") options = ["branch_a", "branch_b", "branch_c", "branch_d"] for option in options: