diff --git a/src/transpose/utils.py b/src/transpose/utils.py index be7a115..0c344ca 100644 --- a/src/transpose/utils.py +++ b/src/transpose/utils.py @@ -7,7 +7,7 @@ def move(source: Path, destination: Path) -> None: """ Move a file using pathlib """ - shutil.move(source, destination) + shutil.move(source.expanduser(), destination.expanduser()) def remove(path: Path) -> None: