mirror of https://github.com/docker/docker-py.git
api: update return type of `diff` method (#3115)
Signed-off-by: John Yang <john.yang20@berkeley.edu>
This commit is contained in:
parent
3178c8d48b
commit
576e47aaac
|
@ -678,7 +678,8 @@ class ContainerApiMixin:
|
||||||
container (str): The container to diff
|
container (str): The container to diff
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
(str)
|
(list) A list of dictionaries containing the attributes `Path`
|
||||||
|
and `Kind`.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
:py:class:`docker.errors.APIError`
|
:py:class:`docker.errors.APIError`
|
||||||
|
|
|
@ -141,7 +141,8 @@ class Container(Model):
|
||||||
Inspect changes on a container's filesystem.
|
Inspect changes on a container's filesystem.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
(str)
|
(list) A list of dictionaries containing the attributes `Path`
|
||||||
|
and `Kind`.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
:py:class:`docker.errors.APIError`
|
:py:class:`docker.errors.APIError`
|
||||||
|
|
Loading…
Reference in New Issue