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:
commit
7b78894220
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue