acoustic-carpenter-78188
02/24/2026, 12:15 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/flyteacoustic-carpenter-78188
02/24/2026, 12:15 AM