This message was deleted.
# python
s
This message was deleted.
s
The output you’re getting suggests that you may be dealing with an
Output[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:
Copy code
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