Update qa_qc to account for lists in is_empty check

This commit is contained in:
Katon Minhas
2026-02-09 18:11:05 -05:00
parent fb4d7db29c
commit 96d6c26ef3
+1 -1
View File
@@ -878,7 +878,7 @@ def is_valid_json(value: Any) -> bool:
Returns:
True if valid JSON or blank
"""
if pd.isna(value) or str(value).strip() == "":
if string_utils.is_empty(value):
return True
try: