Skip to content

Commit

Permalink
fix new line
Browse files Browse the repository at this point in the history
  • Loading branch information
yaseminbridges committed May 11, 2024
1 parent fa5eb18 commit b704c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pheval_ai_marrvel/prepare/prepare_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def obtain_observed_hpo_ids(phenopacket: Phenopacket) -> str:
observed_phenotypes = PhenopacketUtil(phenopacket).observed_phenotypic_features()
observed_hpo_ids = [hpo_id.type.id for hpo_id in observed_phenotypes]
observed_hpo_ids = "/n".join(observed_hpo_ids)
observed_hpo_ids = "\n".join(observed_hpo_ids)
return observed_hpo_ids


Expand Down

0 comments on commit b704c52

Please sign in to comment.