Skip to content

Commit 081c3c4

Browse files
committed
Make build and push into explicit only args
1 parent 2bd8478 commit 081c3c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repo2docker/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ class DockerEngine(ContainerEngine):
9090

9191
def build(
9292
self,
93+
*,
9394
push=False,
9495
load=False,
95-
*,
9696
buildargs=None,
9797
cache_from=None,
9898
container_limits=None,

repo2docker/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ def __init__(self, *, parent):
212212

213213
def build(
214214
self,
215+
*,
215216
push=False,
216217
load=False,
217-
*,
218218
buildargs={},
219219
cache_from=[],
220220
container_limits={},

0 commit comments

Comments
 (0)