I’m learning how to invoke python scripts on studio with this documentation.
It did not provide a sample python script so I wrote one myself from the description. math_op.txt (128 Bytes)
Now, I’m stuck on step 6:
Full Error:
Argument ‘Parameters’: BC36754: ‘Integer()’ cannot be converted to ‘IEnumerable(Of Object)’ because ‘Integer’ is not derived from ‘Object’, as required for the ‘Out’ generic parameter ‘T’ in ‘Interface IEnumerable(Of Out T)’. The selected value is incompatible with the property type.
Hey @Aisya_Yahaya It looks like you’re trying to pass integers {2, 3} to the ‘Parameters’ argument, but it expects an enumerable collection of objects. You might need to explicitly convert your integers to objects before passing them. Try using something like {Object(2), Object(3)} instead.