```AssertionError: Cannot pass output from task ta...
# flyte-support
s
Copy code
AssertionError: Cannot pass output from task task1 that produces no outputs to a downstream task
g
It looks like
task1
doesn’t have output type annotation. e.g.
Copy code
@task
def t1() -> int:
    ...
177 Views