Skip to content

Commit

Permalink
fixed flake8 errro
Browse files Browse the repository at this point in the history
  • Loading branch information
Simran Mattu committed Sep 18, 2024
1 parent bf22398 commit bab376c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion woudc_extcsv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,8 @@ def check_field_validity(self, table, definition):
column = self.extcsv[table][field]
if isinstance(column, list) and '' in column:
line = valueline + column.index('')
if not self._add_to_report(204, line, table=table, field=field):
if not self._add_to_report(
204, line, table=table, field=field):
success = False
return success

Expand Down

0 comments on commit bab376c

Please sign in to comment.