From 957bdafdf7e3a6a93c439a13d15286c889c68937 Mon Sep 17 00:00:00 2001 From: cason Date: Wed, 20 Nov 2024 13:17:04 -0500 Subject: [PATCH] feat: updated helpers --- tests/algorithm/scripts/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/algorithm/scripts/helpers.py b/tests/algorithm/scripts/helpers.py index 50821c5c..af30c981 100644 --- a/tests/algorithm/scripts/helpers.py +++ b/tests/algorithm/scripts/helpers.py @@ -23,7 +23,7 @@ def dict_to_pii(record_data) -> dict | None: "suffix": [record_data.get("SUFFIX", None)] } ], - "ssn": record_data.get("SSN", None), + "ssn": record_data.get("SSN", ""), "race": record_data.get("RACE", None) }