PaulMcInnis / JobFunnel

Scrape job websites into a single spreadsheet with no duplicates.
MIT License
1.78k stars 210 forks source link

tqdm invalid unicode char, changed to ascii style #128

Closed Cam000 closed 3 years ago

Cam000 commented 3 years ago

TQDM progress bar doesn't display unicode characters correctly on my system as per: https://github.com/tqdm/tqdm#faq-and-known-issues

Windows consoles often only partially support unicode and thus often require explicit ascii=True (also here). This is due to either normal-width unicode characters being incorrectly displayed as "wide", or some unicode characters not rendering.

Changed to ascii to avoid this.

PaulMcInnis commented 3 years ago

@Cam000 feel free to rebase and merge, or I can do this for you. Dont worry about failing build, as this is a known issue right now.

Cam000 commented 3 years ago

@PaulMcInnis Gotcha, it would be easier if you could make the change, I mangled my local repo :)

PaulMcInnis commented 3 years ago

No worries, thanks for the contribution.