kyletm / trip_generator

0 stars 0 forks source link

Replace all usages of CSVReader style class with context managers #5

Open kyletm opened 7 years ago

kyletm commented 7 years ago

The CSVReader object is used heavily for opening files instead of using with...open style file opening. This should be replaced to conform with the latter style.

kyletm commented 7 years ago

Module 2 compliance addressed in 5ab1adb73ac033e345205d12ac9cd00b16a5f100. utils now uses a CSVReader object and performs with...open in function scope. Should be easier to change for everything else now.