From 0572be2d486368ede7a3207e0c560da78fe81707 Mon Sep 17 00:00:00 2001 From: lsh0107 Date: Sat, 6 Jan 2024 14:59:05 +0900 Subject: [PATCH] test --- dags/HelloWorld.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dags/HelloWorld.py b/dags/HelloWorld.py index 0ed5eb0..b22c9de 100644 --- a/dags/HelloWorld.py +++ b/dags/HelloWorld.py @@ -9,14 +9,19 @@ tags=['example'], schedule = '0 2 * * *') + + def print_hello(): print("hello!") return "hello!" + def print_goodbye(): + print("goodbye!") return "goodbye!" + print_hello = PythonOperator( task_id = 'print_hello', #python_callable param points to the function you want to run