Skip to content

Commit

Permalink
put_archive: note the data may also be a stream
Browse files Browse the repository at this point in the history
Signed-off-by: Aarni Koskela <akx@iki.fi>
  • Loading branch information
akx committed Feb 3, 2023
1 parent aca129d commit 542f3fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/api/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ def put_archive(self, container, path, data):
container (str): The container where the file(s) will be extracted
path (str): Path inside the container where the file(s) will be
extracted. Must exist.
data (bytes): tar data to be extracted
data (bytes or stream): tar data to be extracted
Returns:
(bool): True if the call succeeds.
Expand Down
2 changes: 1 addition & 1 deletion docker/models/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def put_archive(self, path, data):
Args:
path (str): Path inside the container where the file(s) will be
extracted. Must exist.
data (bytes): tar data to be extracted
data (bytes or stream): tar data to be extracted
Returns:
(bool): True if the call succeeds.
Expand Down

0 comments on commit 542f3fd

Please sign in to comment.