Skip to content

Commit

Permalink
Update checkcel.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet authored Aug 13, 2024
1 parent 6a885a3 commit ef2599e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion checkcel/checkcel.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def __init__(
delimiter=",",
sheet=0,
row=0,
ignore_missing_validators=False
**kwargs
):
super(Checkcel, self).__init__(**kwargs)
Expand All @@ -31,7 +32,7 @@ def __init__(
# This value is used for display. Pandas skips the header row
self.line_count = row + 1
self.column_set = set()
self.ignore_missing_validators = False
self.ignore_missing_validators = ignore_missing_validators

if not (self.source or self.data is not None):
raise Exception("Need to provide either a source or the data (as a pandas dataframe)")
Expand Down

0 comments on commit ef2599e

Please sign in to comment.