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
zeep creates types dynamically for ComplexType values. These new types have the class zeep.objects.ComplexType so isinstance(response, zeep.xsd.ComplexType) is always False, which effectively bypasses the WebServiceCall decorator here:
zeep
creates types dynamically forComplexType
values. These new types have the classzeep.objects.ComplexType
soisinstance(response, zeep.xsd.ComplexType)
is alwaysFalse
, which effectively bypasses theWebServiceCall
decorator here:netsuite/netsuite/soap_api/decorators.py
Line 37 in 9d7bdb3
I'm not sure of the best way to resolve this. Is the
isinstance
test necessary?The text was updated successfully, but these errors were encountered: