Skip to content

Commit

Permalink
tox lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yaseminbridges committed Jan 16, 2025
1 parent 2fd99a6 commit 7c40194
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/pheval/prepare/prepare_corpus.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ def prepare_corpus(
)
else:
# if not updating phenopacket gene identifiers then copy phenopacket as is to output directory
shutil.copy(
phenopacket_path, output_dir.joinpath(f"phenopackets/{phenopacket_path.name}")
) if phenopacket_path != output_dir.joinpath(f"phenopackets/{phenopacket_path.name}") else None
(
shutil.copy(
phenopacket_path, output_dir.joinpath(f"phenopackets/{phenopacket_path.name}")
)
if phenopacket_path != output_dir.joinpath(f"phenopackets/{phenopacket_path.name}")
else None
)

0 comments on commit 7c40194

Please sign in to comment.