mirror of https://github.com/docker/docker-py.git
Removed data argument in import_image (unused?)
This commit is contained in:
parent
8a5cd6ae65
commit
33f5ac57d8
|
|
@ -453,8 +453,7 @@ class Client(requests.Session):
|
|||
return [x['Id'] for x in res]
|
||||
return res
|
||||
|
||||
def import_image(self, src=None, data=None, repository=None, tag=None,
|
||||
image=None):
|
||||
def import_image(self, src=None, repository=None, tag=None, image=None):
|
||||
u = self._url("/images/create")
|
||||
params = {
|
||||
'repo': repository,
|
||||
|
|
|
|||
Loading…
Reference in New Issue