pdf2docx icon indicating copy to clipboard operation
pdf2docx copied to clipboard

pdf2docx/common/share.py

Open wilberlee opened this issue 2 years ago • 1 comments

num = len(components) TypeError: object of type 'NoneType' has no len()

wilberlee avatar Jun 07 '23 07:06 wilberlee

Thanks for reporting this. The following should be a workaround. Will be fixed in new version.

num = len(components or (1,1,1)) # white if components is None

dothinking avatar Jan 23 '24 14:01 dothinking