Update qa_qc to account for lists in is_empty check
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user