Hello All Can mappable task return a list of value...
# flyte-support
j
Hello All Can mappable task return a list of values, Like:
Copy code
@task
def a_mappable_task(a: int) -> List[int]:
    l = [a] * 3
    return l
f
it can but then the map_task itself will return a list[list]
151 Views