Skip to content

Commit

Permalink
Update claim.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoraad authored Nov 2, 2024
1 parent 182efe2 commit 450c174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricksx12/hls/claim.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _populate_subscriber_loop(self):
def _populate_patient_loop(self) -> Dict[str, str]:
# Note - if this doesn't exist then it's the same as subscriber loop
# 01 = Spouse; 18 = Self; 19 = Child; G8 = Other
return self._populate_subscriber_loop() if self._first(self.subscriber_loop, "SBR").element(1) == "18" else PatientIdentity(
return self._populate_subscriber_loop() if self._first(self.subscriber_loop, "SBR").element(2) == "18" else PatientIdentity(
nm1 = self._first(self.patient_loop, "NM1"),
n3 = self._first(self.patient_loop, "N3"),
n4 = self._first(self.patient_loop, "N4"),
Expand Down

0 comments on commit 450c174

Please sign in to comment.