e2e: fix formatting

This commit is contained in:
Jens Langhammer 2020-09-29 14:04:23 +02:00
parent e0d8189442
commit a13d4047b6
1 changed files with 1 additions and 1 deletions

View File

@ -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