From 6b5141f9e97cc1c95634cab22e158b85c11b2ccf Mon Sep 17 00:00:00 2001 From: cbrinson-rise8 <127439654+cbrinson-rise8@users.noreply.github.com> Date: Fri, 3 Jan 2025 09:40:20 -0500 Subject: [PATCH] Update src/recordlinker/schemas/identifier.py Co-authored-by: Eric Buckley --- src/recordlinker/schemas/identifier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/recordlinker/schemas/identifier.py b/src/recordlinker/schemas/identifier.py index 7fb6f362..7ebf576b 100644 --- a/src/recordlinker/schemas/identifier.py +++ b/src/recordlinker/schemas/identifier.py @@ -179,6 +179,7 @@ def parse_value(cls, value: str, info: ValidatorInfo): """ Parse the value string """ + # NOTE: Define "type" before "value" in the field definitions to guarentee that it will be available here. identifier_type = info.data["type"] if identifier_type == IdentifierType.SS: val = str(value).strip()