Hello All Can mappable task return a list of value...
# ask-the-community
k
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
k
it can but then the map_task itself will return a list[list]
150 Views