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
def _elementWidth(self, v, s, cellcoord):
if isinstance(v,(list,tuple)):
w = 0
for e in v:
ew = self._elementWidth(e,s)
if ew is None: return None
w = max(w,ew)
return w
The text was updated successfully, but these errors were encountered:
Hello. I use method wrapOn(canvas, width, height) and get such exeption in finction _elementWidth(self, v, s, cellcoord):
File "D:/DocsFromNotebook/Clinic Work/knowledge_base/branches/clinicProject\audit\spreadsheettable.py", line 272, in _elementWidth
TypeError: _elementWidth() takes exactly 4 arguments (3 given)
[25/Jan/2018 11:34:27] "POST /audit/convertPDF/ HTTP/1.1" 500 147430
File "D:/DocsFromNotebook/Clinic
The text was updated successfully, but these errors were encountered: