acoustic-carpenter-78188
06/28/2024, 5:54 PM@task
def foo(x: int, y: int) -> int:
...
@workflow
def wf(x: int, y: int) -> int:
return foo(x=x, y=y)
Goal: What should the final outcome look like, ideally?
Support positional args
@task
def foo(x: int, y: int) -> int:
...
@workflow
def wf(x: int, y: int) -> int:
return foo(x, y)
Describe alternatives you've considered
NA
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
06/28/2024, 5:54 PM