Skip to content

Commit

Permalink
Revert "return None"
Browse files Browse the repository at this point in the history
This reverts commit 968674c.
  • Loading branch information
andreacosolo committed Oct 25, 2022
1 parent 968674c commit 1c65c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wranglertools/import_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def cell_value(cell):
if ctype == openpyxl.cell.cell.TYPE_ERROR: # pragma: no cover
raise ValueError('Cell %s contains a cell error' % str(cell.coordinate))
elif value is None:
return None
return ''
elif ctype == openpyxl.cell.cell.TYPE_BOOL:
boolstr = str(value).strip()
if boolstr == 'TRUE':
Expand Down

0 comments on commit 1c65c54

Please sign in to comment.