productner icon indicating copy to clipboard operation
productner copied to clipboard

CSV file opens in "wb". This throws an error in python3

Open takauchisora opened this issue 5 years ago • 2 comments

I believe the line below must be replaced to

outfile = open('.'.join(data_file.split('.')[:-1] + ['processed', 'csv']), 'wb')

To the line below for python3

outfile = open('.'.join(data_file.split('.')[:-1] + ['processed', 'csv']), 'w')

takauchisora avatar May 15 '19 08:05 takauchisora

open a PR :)

etano avatar May 27 '19 08:05 etano

Hi, Looks like I don't have permissions to raise PRs

takauchisora avatar Aug 17 '19 21:08 takauchisora