Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh0107 committed Jan 6, 2024
1 parent fdcb88c commit 0572be2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dags/HelloWorld.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0572be2

Please sign in to comment.