pdf2docx
pdf2docx copied to clipboard
pdf2docx/common/share.py
num = len(components) TypeError: object of type 'NoneType' has no len()
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