Skip to content

Commit

Permalink
Remove push
Browse files Browse the repository at this point in the history
  • Loading branch information
yardee committed Nov 3, 2023
1 parent 9511cf2 commit 9a72b28
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 30 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/push.yml

This file was deleted.

2 changes: 1 addition & 1 deletion python/src/unece_excel_parser/lib/normalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Normalizer:

@staticmethod
def is_empty(text: any) -> bool:
return text is None or str(text) == "nan" or str(text) == ""
return text is None or str(text) == "nan" or str(text).strip() == ""

@staticmethod
def normalize_value(value) -> str | None:
Expand Down

0 comments on commit 9a72b28

Please sign in to comment.