Skip to content
Snippets Groups Projects

ENH: allow to provide required columns explicitly

Merged Henrik tom Wörden requested to merge f-required into dev
3 files
+ 4
7
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -221,7 +221,7 @@ class TableImporter():
value check is not necessary.
obligatory_columns : list, optional
List of column names, each listed column must exist and must not have missing values.
List of column names that must not have missing values.
unique_keys : list, optional
List of column names that in combination must be unique: each row has a unique
@@ -272,7 +272,7 @@ class TableImporter():
"""
for col in self.obligatory_columns+self.existing_columns:
for col in self.existing_columns:
if col not in df.columns:
errmsg = "Column '{}' missing in ".format(col)
errmsg += ("\n{}.\n".format(filename) if filename
Loading