Python docx2pdf : How to suppress the output message HBox(children=(FloatProgress(value=0.0, max=6.0), HTML(value='')))

219 views Asked by At

When running the following code

from docx2pdf import convert
convert(path)

it prints the following output followed by a blank line

HBox(children=(FloatProgress(value=0.0, max=6.0), HTML(value='')))

Is there a way to suppress this output message?

0

There are 0 answers