Jazzy
09/29/2021, 7:50 AM@solid(
output_defs=[OutputDefinition(dagster_type=List)]
)
Liam Coatman
09/29/2021, 7:53 AM[Any]
, i.e. a list with elements of Any
type. That's what you specified. If you want something more specific, e.g. a list of ints, use dagster_type=List[int]
Jazzy
09/29/2021, 8:59 AM