AlJohri / docx2pdf

MIT License
497 stars 94 forks source link

It's need to add tqdm console switch (`disable=True`) #89

Open ucomru opened 11 months ago

ucomru commented 11 months ago

There are a lot of problems with console logging tqdm.

I think it's need to add param log: bool = True to the docx2pdf.convert function

1

And then add disable=log to the tqdm method:

...
pbar = tqdm(total=total, disable=log)
...