Skip to content

Commit

Permalink
api: note the data arg may also be a stream in put_archive (#2478)
Browse files Browse the repository at this point in the history
Signed-off-by: Aarni Koskela <akx@iki.fi>
  • Loading branch information
akx authored Feb 22, 2023
1 parent f846232 commit aaf68b7
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 aaf68b7

Please sign in to comment.