From 992e891388c0a818e94302289261eebea3e5d5c5 Mon Sep 17 00:00:00 2001 From: VenkataKrishna Reddy Avula Date: Tue, 4 Nov 2025 18:17:24 +0000 Subject: [PATCH] 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 --- fieldExtraction/src/utils/string_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fieldExtraction/src/utils/string_utils.py b/fieldExtraction/src/utils/string_utils.py index f8cd2f5..51de850 100644 --- a/fieldExtraction/src/utils/string_utils.py +++ b/fieldExtraction/src/utils/string_utils.py @@ -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