Skip to content

Commit

Permalink
Merge pull request #215 from fmi-faim/fix_path_resolving
Browse files Browse the repository at this point in the history
Use absolute() instead of resolve().
  • Loading branch information
tibuch authored Feb 11, 2025
2 parents 944752b + 285cfcd commit 3d27f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/faim_ipa/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def resolve(relative_path: Path, reference: Path) -> Path:
"""
if relative_path.is_absolute():
return relative_path
return (reference / relative_path).resolve()
return (reference / relative_path).absolute()


def make_relative(path: Path, reference: Path):
Expand Down

0 comments on commit 3d27f48

Please sign in to comment.