Skip to content

Commit

Permalink
Remove convert_float
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet committed Sep 14, 2021
1 parent 283a1c1 commit 054430a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkcel/checkcel.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def validate(self):
)

if self.type == "spreadsheet":
df = pandas.read_excel(self.source, sheet_name=self.sheet, convert_float=False, keep_default_na=False, skiprows=self.row)
df = pandas.read_excel(self.source, sheet_name=self.sheet, keep_default_na=False, skiprows=self.row)
else:
df = pandas.read_csv(self.source, sep=self.delimiter, skiprows=self.row)

Expand Down

0 comments on commit 054430a

Please sign in to comment.