https://flyte.org logo
s

seunggs

09/10/2022, 8:39 PM
Copy code
AssertionError: Cannot pass output from task task1 that produces no outputs to a downstream task
k

Kevin Su

09/11/2022, 8:36 AM
It looks like
task1
doesn’t have output type annotation. e.g.
Copy code
@task
def t1() -> int:
    ...
3 Views