https://prefect.io logo
i

Isara Ovin

07/20/2022, 11:30 AM
Im trying to use local dask executor and add task dependency from the previous task like below (Using prefect 1) but running this gives me and error saying
add_json_index() missing 1 required positional argument: 'output'
Copy code
output = filter_empty_responses(data)

    # Parsing Jsons
    indexed_output = add_json_index(output, upstream_tasks=[filter_empty_responses])
a

Anna Geller

07/20/2022, 12:58 PM
can you share a full minimal reproducible example?
3 Views