fix-csv should be fix_csv
Created by: jvasile
PEP 8 discourages underscores in module and package names. If somebody wanted to build on fix-csv, they couldn't just do import fix-csv
. Instead, they would have to do python_code = __import__('fix-csv')
.
I'm not sure if there is anything in fix-csv that somebody might want to build on, but renaming this file will make it more pythonic.