https://flyte.org logo
#ask-the-community
Title
# ask-the-community
k

Khalil Almazaideh

05/23/2023, 9:20 PM
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

Ketan (kumare3)

05/23/2023, 10:17 PM
it can but then the map_task itself will return a list[list]