gorgeous-beach-23305
06/26/2023, 2:57 PMFailed with Unknown Exception <class 'AssertionError'> Reason: Cannot pass output from task n3 that produces no outputs to a downstream task
How do I find more information about this. Which task is this referring to?glamorous-carpet-83516
06/26/2023, 4:05 PMkind-kite-58745
06/26/2023, 4:46 PM@task
def mytask(input1: str):
return input1
This change made it work:
def mytask(input1: str) -> str:
return input1
Look through your tasks for a task that is supposed to return something but doesn’t specify which type it returns. Also make sure that you are not trying to receive as an input the promise from a task that isn’t supposed to return anythinggorgeous-beach-23305
06/26/2023, 10:46 PM