black style tweaks: manually added commas etc to tweak formatting

This commit is contained in:
Erik Sundell
2021-06-28 13:03:40 +02:00
committed by Erik Sundell
parent fe3968efe0
commit a582c24e19
6 changed files with 28 additions and 21 deletions

View File

@@ -97,7 +97,10 @@ def container(docker_client, image_name):
Yields the container instance and kills it when the caller is done with it.
"""
container = TrackedContainer(
docker_client, image_name, detach=True, ports={"8888/tcp": 8888}
docker_client,
image_name,
detach=True,
ports={"8888/tcp": 8888},
)
yield container
container.remove()