diff --git a/data/model.py b/data/model.py index e0cef7ddb..b7e64bfcb 100644 --- a/data/model.py +++ b/data/model.py @@ -769,10 +769,7 @@ def delete_tag_and_images(namespace_name, repository_name, tag_name): tag_image_ids.discard(str(tag.image.id)) # Find all the images that belong to the tag. - tag_images = [] - for image in all_images: - if str(image.id) in tag_image_ids: - tag_images.append(image) + tag_images = [image for image in all_images if str(image.id) in tag_image_ids] # Delete the tag found. found_tag.delete_instance()