diff --git a/PyStemmusScope/bmi/docker_utils.py b/PyStemmusScope/bmi/docker_utils.py index 5b5657be..6dabaf4a 100644 --- a/PyStemmusScope/bmi/docker_utils.py +++ b/PyStemmusScope/bmi/docker_utils.py @@ -72,7 +72,8 @@ def find_image(image: str) -> None: images = client.images() tags = [] for img in images: - [tags.append(tag) for tag in img["RepoTags"]] + for tag in img["RepoTags"]: + tags.append(tag) if image not in set(tags): pull_image(image)