acoustic-carpenter-78188
05/25/2023, 5:28 AM@task
def hello(username: Union[str, int]) -> str:
...
After:
@task
def hello(username: str | int) -> str:
...
https://peps.python.org/pep-0604/
Goal: What should the final outcome look like, ideally?
... | ...
type should be supported.
Describe alternatives you've considered
Union type
Propose: Link/Inline OR Additional context
No response
Are you sure this issue hasn't been raised already?
☑︎ Yes
Have you read the Code of Conduct?
☑︎ Yes
flyteorg/flyte