This is an automated email from the ASF dual-hosted git repository.

uranusjr pushed a commit to branch aip-39-docs
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit d451fbd8762622f6e70016275dfd4729fd524f4c
Author: Tzu-ping Chung <[email protected]>
AuthorDate: Mon Sep 13 15:06:16 2021 +0800

    Fix example
---
 airflow/example_dags/example_workday_timetable.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/airflow/example_dags/example_workday_timetable.py 
b/airflow/example_dags/example_workday_timetable.py
index c1165e6..9816234 100644
--- a/airflow/example_dags/example_workday_timetable.py
+++ b/airflow/example_dags/example_workday_timetable.py
@@ -23,7 +23,11 @@ from airflow import DAG
 from airflow.example_dags.plugins.workday import AfterWorkdayTimetable
 from airflow.operators.dummy import DummyOperator
 
-with DAG(timetable=AfterWorkdayTimetable(), tags=["example", "timetable"]) as 
dag:
+with DAG(
+    dag_id="example_workday_timetable",
+    timetable=AfterWorkdayTimetable(),
+    tags=["example", "timetable"],
+) as dag:
     DummyOperator(task_id="run_this")
 
 if __name__ == "__main__":

Reply via email to