helios-server
helios-server copied to clipboard
Remove unicodecsv dependency
On Python 3, all strings are unicode strings. Helios has the unicodecsv
dependency for reading CSV files, but that package is only intended to be used in Python 2. After upgrading Helios to Python 3, that dependency can be dropped.
After dropping the dependency, this PR tweaks the code that was using it to use the built-in csv
module.