We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running a workflow locally gives a TypeError when using task-chaining syntax.
TypeError
Workflow runs locally without error.
from flytekit import task, workflow @task def task_a(x: int) -> int: return x @task def task_b(x: int) -> int: return x @workflow def test(x: int) -> int: a = task_a(x=x) b = task_b(x=x) a >> b return a if __name__ == "__main__": test(x=1)
Raises:
TypeError: unsupported operand type(s) for >>: 'Promise' and 'Promise'
No response
The text was updated successfully, but these errors were encountered:
pingsutw
No branches or pull requests
Describe the bug
Running a workflow locally gives a
TypeError
when using task-chaining syntax.Expected behavior
Workflow runs locally without error.
Additional context to reproduce
Raises:
Screenshots
No response
Are you sure this issue hasn't been raised already?
Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: