gettign following error while executing the python code
ERROR Validation Error 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. Main.xaml
The documentation states this (see screenshot). Therefore, you need to provide a variable of type IEnumerable<Object>. That’s why the notation mentioned above is necessary. You’re attempting to provide IEnumerable<Int32>, and this is where your error originates.