<#5320 [Core feature] Flytekit support for positio...
# flytekit
a
#5320 [Core feature] Flytekit support for positional args Issue created by kumare3 Motivation: Why do you think this is important? Curently only kwargs are supported
Copy code
@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
Copy code
@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/flyte