Skip to content

Commit e7b7990

Browse files
committed
fix typing
Signed-off-by: mgorsk1 <[email protected]>
1 parent 8ed3df0 commit e7b7990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/testcontainers/core/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def copy_file_from_container(self, container_file: str, destination_file: str) -
9999
return destination_file
100100

101101
@staticmethod
102-
def _put_file_in_container(container, source_file: Path, destination_file: str):
102+
def _put_file_in_container(container, source_file: Path, destination_file: Path):
103103
data = io.BytesIO()
104104

105105
with tarfile.open(fileobj=data, mode='w') as tar:

0 commit comments

Comments
 (0)