Skip to content

Commit

Permalink
feat(RV-386): Add login screen
Browse files Browse the repository at this point in the history
  • Loading branch information
knguyenrise8 committed Jan 10, 2025
1 parent f8f7ea3 commit 420923d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OCR/ocr/services/phdc_converter/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def _build_patient(self, patient: Patient) -> ET.Element:
)
patient_data.append(v)
else:
logging.warning(f"Race code {patient.race_code} not found in " "the OMB classification.")
logging.warning(f"Race code {patient.race_code} not found in the OMB classification.")

if patient.ethnic_group_code is not None:
if patient.ethnic_group_code in ethnicity_code_and_mapping:
Expand All @@ -658,7 +658,7 @@ def _build_patient(self, patient: Patient) -> ET.Element:
)
patient_data.append(v)
else:
logging.warning(f"Ethnic group code {patient.ethnic_group_code} not " "found in OMB classification.")
logging.warning(f"Ethnic group code {patient.ethnic_group_code} not found in OMB classification.")

return patient_data

Expand Down

0 comments on commit 420923d

Please sign in to comment.