Skip to content

Commit

Permalink
Revert "chore: fix type error"
Browse files Browse the repository at this point in the history
This reverts commit 7cc5c3d.
  • Loading branch information
filipsnastins committed Nov 10, 2024
1 parent 9ef409c commit 5d416a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tomodachi_testcontainers/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def copy_files_to_container(container: Container, host_path: Path, container_pat
else:
tar.add(host_path, arcname=host_path.name)
tar_stream.seek(0)
container.put_archive(path=container_path.name, data=tar_stream)
container.put_archive(path=container_path, data=tar_stream)


def copy_files_from_container(container: Container, container_path: Path, host_path: Path) -> None:
Expand Down

0 comments on commit 5d416a1

Please sign in to comment.