Skip to content

Commit

Permalink
fix parser
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiagoTrabach committed Sep 6, 2023
1 parent f08c2a9 commit fc81a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fhir_utils/fhir/patient/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def fhir_to_dict(fhir_json: str, source: str) -> dict:
"race": race,
"ethnicity": ethnicity,
"register_quality": register_quality,
"self.telecom": fhir_json["telecom"] if "telecom" in fhir_json.keys() else "",
"telecom": fhir_json["telecom"] if "telecom" in fhir_json.keys() else "",
"_source": source,
"_last_updated": ""
}
Expand Down

0 comments on commit fc81a94

Please sign in to comment.