From 3ce00f535ca899f19c30481294e8e4707845b3bd Mon Sep 17 00:00:00 2001 From: Mati O Date: Sun, 2 Oct 2022 15:52:28 +0300 Subject: [PATCH] Fixed triple quotes in task group example --- docs/apache-airflow/concepts/dags.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/concepts/dags.rst b/docs/apache-airflow/concepts/dags.rst index bf88459289cb3..c9d6ba12f5991 100644 --- a/docs/apache-airflow/concepts/dags.rst +++ b/docs/apache-airflow/concepts/dags.rst @@ -514,7 +514,7 @@ TaskGroup also supports ``default_args`` like DAG, it will overwrite the ``defau ): @task_group(default_args={'retries': 3}): def group1(): - """This docstring will become the tooltip for the TaskGroup." + """This docstring will become the tooltip for the TaskGroup.""" task1 = EmptyOperator(task_id='task1') task2 = BashOperator(task_id='task2', bash_command='echo Hello World!', retries=2) print(task1.retries) # 3