Chaining tasks with no input: how to do that?
# ask-community
n
Chaining tasks with no input: how to do that?
managed that! in imperative mode use flow.chain(...)
inside a flow context use the followin snippet:
import prefect
def chain(*tasks): flow = prefect.context.get("flow", None) flow.chain(*tasks)