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
Describe the bug Currently, if a task returns two or more outputs, users are expected to declare those return signatures as
def t1() -> (int, int): ...
This is fine but is not idiomatic and doesn't pass mypy. The correct thing to support is:
def t1() -> typing.Tuple[int, int]: ...
The text was updated successfully, but these errors were encountered:
pingsutw
No branches or pull requests
Describe the bug
Currently, if a task returns two or more outputs, users are expected to declare those return signatures as
This is fine but is not idiomatic and doesn't pass mypy. The correct thing to support is:
The text was updated successfully, but these errors were encountered: