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
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
@@ -374,7 +374,8 @@ class TableImporter():
for index, row in df.iterrows():
# if none of the relevant information is given, skip
if np.array([pd.isnull(row.loc[key]) for key in self.obligatory_columns]).all():
if np.array([pd.isnull(row.loc[key]) for key in self.obligatory_columns
if key in df.columns]).all():
df = df.drop(index)
Loading