DarBeck / PyQT5_Tutorial

This repository will hold example files and useful documents needed to enhance the experience while completing the course
3 stars 0 forks source link

PyQT5_Tutorial/currency_converter.py - CSV file structure has changed so each element is now wrapped in double quotes. Suggest the use of replace() to resolve this #1

Open alexandercronin opened 4 years ago

alexandercronin commented 4 years ago

I suggest the following to resolve in line 60 use file_handler.append(row.decode().replace('"','')) instead of file_handler.append(row.decode())

Very much enjoyed your video tutorial :)

DarBeck commented 4 years ago

Thanks for the feedback alexandercronin! I will check it out then make the changes.