Skip to content

Commit

Permalink
made UNIPROT_S3_DIR a Path
Browse files Browse the repository at this point in the history
  • Loading branch information
hrshdhgd committed Sep 22, 2024
1 parent 3d8a5f9 commit 93519dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uniprot2s3/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
if RAW_DATA_DIR.is_dir():
UNIPROT_S3_DIR = Path(RAW_DATA_DIR).joinpath("s3")
else:
UNIPROT_S3_DIR = "s3"
UNIPROT_S3_DIR = Path("data/raw/s3")
UNIPROT_S3_DIR.mkdir(parents=True, exist_ok=True)


Expand Down

0 comments on commit 93519dd

Please sign in to comment.