Andor Tóth
02/28/2020, 2:20 PMDylan
ipythonfrom prefect import task
@task
def my_task():
    print("Hello, World!")
output = my_task.run()Dylan
Nicholas Perrott
03/03/2020, 3:52 AMDylan
