I am not able to figure out why this is happening.
I have a simple function that just returns the same variable that is passed to it.
When I use the Python manual input, the function executes fine.
When I try to use the same function with a control room file, I always get 'bot error' as my output.
The code is just:
def test(part_no):
return part_no
I've tried more complex functions using pandas, and am able to get it running in manual input, but as soon as I try loading it as a control room file, it fails.
File:
Manual: