~/erpnext/apps/frappe/frappe/commands/utils.py in <module>
----> 1 self.client.getPersona(
2 sign=self.Sign,
3 token=self.Token,
4 cuitRepresentada=self.Cuit,
5 idPersona=id_persona,
~/erpnext/env/lib/python3.10/site-packages/pysimplesoap/client.py in <lambda>(*args, **kwargs)
157 return lambda self=self, *args, **kwargs: self.call(attr,*args,**kwargs)
158 else: # using WSDL:
--> 159 return lambda *args, **kwargs: self.wsdl_call(attr,*args,**kwargs)
160
161 def call(self, method, types, *args, **kwargs):
~/erpnext/env/lib/python3.10/site-packages/pysimplesoap/client.py in wsdl_call(self, method, *args, **kwargs)
354 response = self.call(method, types, *params)
355 # parse results:
--> 356 resp = response('Body',ns=soap_uri).children().unmarshall(output)
357 return resp and list(resp.values())[0] # pass Response tag children
358
~/erpnext/env/lib/python3.10/site-packages/pysimplesoap/simplexml.py in unmarshall(self, types, strict)
523 ## fn = fn[ref_name_type]
524 children = node.children()
--> 525 value = children and children.unmarshall(fn, strict)
526 else:
527 if fn is None: # xsd:anyType not unmarshalled
~/erpnext/env/lib/python3.10/site-packages/pysimplesoap/simplexml.py in unmarshall(self, types, strict)
523 ## fn = fn[ref_name_type]
524 children = node.children()
--> 525 value = children and children.unmarshall(fn, strict)
526 else:
527 if fn is None: # xsd:anyType not unmarshalled
~/erpnext/env/lib/python3.10/site-packages/pysimplesoap/simplexml.py in unmarshall(self, types, strict)
523 ## fn = fn[ref_name_type]
524 children = node.children()
--> 525 value = children and children.unmarshall(fn, strict)
526 else:
527 if fn is None: # xsd:anyType not unmarshalled
~/erpnext/env/lib/python3.10/site-packages/pysimplesoap/simplexml.py in unmarshall(self, types, strict)
467 fn = REVERSE_TYPE_MAP[xsd_type]
468 elif strict:
--> 469 raise TypeError("Tag: %s invalid (type not found)" % (name,))
470 else:
471 # if not strict, use default type conversion