From a13d4047b6ce8c43f09b149285778f11089a5155 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 29 Sep 2020 14:04:23 +0200 Subject: [PATCH] e2e: fix formatting --- e2e/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils.py b/e2e/utils.py index e0c7db6899..64d2c8bbed 100644 --- a/e2e/utils.py +++ b/e2e/utils.py @@ -47,7 +47,7 @@ class SeleniumTestCase(StaticLiveServerTestCase): def _start_container(self, specs: Dict[str, Any]) -> Container: client: DockerClient = from_env() - client.images.pull(specs['image']) + client.images.pull(specs["image"]) container = client.containers.run(**specs) if "healthcheck" not in specs: return container