Commit 679973e8 authored by sim's avatar sim

[FIX] Get rid of pandas warning when parsing CSV

parent 4e35d605
......@@ -16,7 +16,8 @@ class CSVParser(Parser):
def parse(self, fp=None):
fp = fp or self._file
df = pandas.read_csv(fp, dtype=object, skip_blank_lines=True, sep=None,
df = pandas.read_csv(fp, dtype=object, engine='python',
skip_blank_lines=True, sep=None,
na_values=[], keep_default_na=False)
# Return a generator of dictionaries with column labels as keys,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment