kaxil commented on a change in pull request #11253:
URL: https://github.com/apache/airflow/pull/11253#discussion_r499133765
##########
File path: airflow/example_dags/example_nested_branch_dag.py
##########
@@ -27,7 +27,12 @@
from airflow.operators.python import BranchPythonOperator
from airflow.utils.dates import days_ago
-with DAG(dag_id="example_nested_branch_dag", start_date=days_ago(2),
schedule_interval="@daily") as dag:
+with DAG(
+ dag_id="example_nested_branch_dag",
+ start_date=days_ago(2),
+ schedule_interval="@daily",
+ tags=['example']
Review comment:
```suggestion
tags=["example"]
```
##########
File path: airflow/example_dags/example_task_group.py
##########
@@ -25,7 +25,7 @@
from airflow.utils.task_group import TaskGroup
# [START howto_task_group]
-with DAG(dag_id="example_task_group", start_date=days_ago(2)) as dag:
+with DAG(dag_id="example_task_group", start_date=days_ago(2),
tags=['example']) as dag:
Review comment:
```suggestion
with DAG(dag_id="example_task_group", start_date=days_ago(2),
tags=["example"]) as dag:
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]