Skip to content

Commit 5778ed0

Browse files
committed
docker.py: remove workaround for old black
1 parent e32c7b0 commit 5778ed0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

repo2docker/docker.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,7 @@ def build(
6161
dockerfile="",
6262
fileobj=None,
6363
path="",
64-
# fmt: off
65-
# black adds a trailing , but this is invalid in Python 3.5
6664
**kwargs
67-
# fmt: on
6865
):
6966
return self._apiclient.build(
7067
buildargs=buildargs,
@@ -102,10 +99,7 @@ def run(
10299
publish_all_ports=False,
103100
remove=False,
104101
volumes=None,
105-
# fmt: off
106-
# black adds a trailing , but this is invalid in Python 3.5
107102
**kwargs
108-
# fmt: on
109103
):
110104
client = docker.from_env(version="auto")
111105
container = client.containers.run(

0 commit comments

Comments
 (0)