Merge pull request #1209 from mozilla/reuben-patch-float-not-iterable

Make sure transcript field isn't coerced to float
This commit is contained in:
Reuben Morais 2018-02-07 10:21:06 -02:00 committed by GitHub
commit 7b78894220
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class DataSet(object):
self.next_index = next_index
self.files = None
for csv in csvs:
file = pandas.read_csv(csv, encoding='utf-8')
file = pandas.read_csv(csv, encoding='utf-8', na_filter=False)
if self.files is None:
self.files = file
else: