mirror of https://github.com/docker/docker-py.git
Break down _post() parameters one-per-line in build()
This commit is contained in:
parent
732b4378ae
commit
dac4211a85
|
@ -332,7 +332,12 @@ class Client(requests.Session):
|
|||
headers = {'Content-Type': 'application/tar'}
|
||||
|
||||
response = self._post(
|
||||
u, data=context, params=params, headers=headers, stream=stream, timeout=timeout
|
||||
u,
|
||||
data=context,
|
||||
params=params,
|
||||
headers=headers,
|
||||
stream=stream,
|
||||
timeout=timeout,
|
||||
)
|
||||
|
||||
if context is not None:
|
||||
|
|
Loading…
Reference in New Issue