Merged in bugfix/prov_group_full_name (pull request #759)
bugfix/prov_group_full_name to main * modified string utils is empty Approved-by: Katon Minhas
This commit is contained in:
committed by
Katon Minhas
parent
3eed26b558
commit
992e891388
@@ -348,7 +348,7 @@ def is_empty(value: str | list | pd.Series, pd_mask: bool = True) -> bool | pd.S
|
||||
if not value or value.isspace():
|
||||
return True
|
||||
lower_stripped = value.lower().strip()
|
||||
if lower_stripped in ["n/a", "na", "null", "none", "nan"]:
|
||||
if lower_stripped in ["n/a", "na", "null", "none", "nan", "no_identifiers_found"]:
|
||||
return True
|
||||
|
||||
return value in empty_values
|
||||
|
||||
Reference in New Issue
Block a user