From bd2fe5cf99e4bf8116c501f923028a75647b0e36 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 7 Jan 2014 15:48:44 -0500 Subject: [PATCH] Change to a list comprehesion --- data/model.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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()