kent
01/12/2023, 8:13 AM@task
def my_favorite_function():
raise ValueError("This flow immediately fails")
@task
def one_return():
return 1
@task
def tow_return():
return 2
@flow
def run_flow():
my_favorite_function()
one_return()
tow_return()
I want to PEND or skip an upcoming schedule.
I read the documentation but couldn't figure out how to implement the specifics.Christopher Boyd
01/12/2023, 3:47 PM