You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
press any key to exitERROR:opcua.server.address_space:Error executing method call CallMethodRequest(ObjectId:FourByteNodeId(ns=2;i=26), MethodId:FourByteNodeId(ns=2;i=27), InputArguments:None), an exception was raised:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/opcua/server/address_space.py", line 466, in _call
result = node.call(method.ObjectId, *method.InputArguments)
TypeError: wrapper() argument after * must be an iterable, not NoneType
Error
Cause
This is because line 466 expects an iterable:
Fix
This can be fixed by passing in an empty array if there are no input arguments:
The text was updated successfully, but these errors were encountered: