summaryrefslogtreecommitdiff
path: root/test/python/docker/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/docker/common.py')
-rw-r--r--test/python/docker/common.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/python/docker/common.py b/test/python/docker/common.py
index e79d64a9b..11f512495 100644
--- a/test/python/docker/common.py
+++ b/test/python/docker/common.py
@@ -4,9 +4,7 @@ from test.python.docker import constant
def run_top_container(client: DockerClient):
- c = client.containers.create(
- constant.ALPINE, command="top", detach=True, tty=True, name="top"
- )
+ c = client.containers.create(constant.ALPINE, command="top", detach=True, tty=True, name="top")
c.start()
return c.id