lucian
03/06/2025, 1:11 PMJake Kaplan
03/06/2025, 3:03 PMfrom prefect import flow, task
@task
def get_list() -> list:
return [1, 2, 3]
@task
def print_list(l: list):
print(l)
@flow
def my_flow():
l = get_list()
print_list(l)
my_flow()
you may get something like this, that represents that where parameter L came fromJake Kaplan
03/06/2025, 3:03 PMlucian
03/07/2025, 9:44 AM