Skip to content

Commit

Permalink
Update src/otp_tsv_to_upload.py
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas Zajac <thomas-jakob.zajac@uni-tuebingen.de>
  • Loading branch information
KerstenBreuer and mephenor authored Jan 18, 2023
1 parent 33bf75f commit 8eb5bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/otp_tsv_to_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def load_file_metadata(otp_tsv: Path) -> list[FileMetadata]:
with open(otp_tsv, "r", encoding="utf-8") as tsv_file:
files = [
FileMetadata(
path=Path(line.split("\t")[0].strip()).absolute(),
path=Path(line.split("\t")[0].strip()).resolve(),
alias=line.split("\t")[1].strip(),
)
for line in tsv_file.readlines()
Expand Down

0 comments on commit 8eb5bdf

Please # to comment.