sparse-intern-71089
10/02/2023, 4:23 PMstraight-cat-87033
10/02/2023, 8:55 PMOutput[list[Output[str]]
instead of just an Output[list[str]]
?
If that’s the case, further expanding with another apply, or (if it my be a mix on inputs and outputs) defining a function such as:
def print_output_list(output_list: list[Input[str]]):
as_outputs = [ Output.from_input(x) for x in output_list ]
Output.all(*as_outputs).apply(print)
And then calling new_tags.apply(print_output_list)
could help