Hi,
I want to return two ints from PythonTransform, something like this (I have much more complicated code, this is just an example of the output that I want):
@returns([int,int])
def process(value):
if value>1:
return 1,2
else:
return 0,1
I've tried @returns([int,int]), @returns(list), etc.. none of them works.
Thanks