For some reason I cannot properly return multiple outputs. Adding multiple elements in outputs list in the decorator works, but then when I try to return multiple values in the function: there are some issues with it. Do you have an example how to return multiple outputs with Hops component using CPython?
First you need to declare two output values within outputs = [] inside the @hops.component[] decorator of your function, and then it - the function - needs to return these value types in the same order!
Yeah, I did that, it worked for me for 2 outputs, but didn’t work for 3 or more. The decorator outputs list works OK - it creates multiple outputs in the component, but these outputs are returning nothing in GH.