Skip to content

Commit

Permalink
Merge pull request #905 from Health-Informatics-UoN/bug/icd10
Browse files Browse the repository at this point in the history
Fix automated building multiple Vocabs concepts from OMOP
  • Loading branch information
AndrewThien authored Nov 1, 2024
2 parents 727be6d + b5de16a commit 6c67494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/workers/RulesConceptsActivity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def _update_entries_with_standard_concepts(
) # Convert concept_id to int to match the keys in the dictionary
# If the concept_id match the key of the dict (which is the non stantard concept), update it with the value of the key (with is the standard concept)
if concept_id in standard_concepts_dict:
entry["concept_id"] = standard_concepts_dict[concept_id][0]
entry["concept_id"] = standard_concepts_dict[concept_id]


def _handle_table(
Expand Down

0 comments on commit 6c67494

Please sign in to comment.