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