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:
VenkataKrishna Reddy Avula
2025-11-04 18:17:24 +00:00
committed by Katon Minhas
parent 3eed26b558
commit 992e891388
+1 -1
View File
@@ -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