Skip to content

Commit

Permalink
While my flake8 is OK, github's wasn't. Try to fix.
Browse files Browse the repository at this point in the history
Signed-off-by: Kurt Garloff <[email protected]>
  • Loading branch information
garloff committed Sep 1, 2024
1 parent 676681e commit 48cb865
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tests/iaas/entropy/entropy-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,8 @@ def main(argv):
if image_visibility[0] != '':
logger.debug(f"Images: Filter for visibility={image_visibility}")
all_images = list(filter(lambda x: x.visibility in image_visibility, all_images))
logger.debug(f"Images: {list(map(lambda x: x.name + "(" + x.visibility + ")", all_images))}")
all_img_list = list(map(lambda x: x.name + " (" + x.visibility + ")", all_images))
logger.debug(f"Images: {all_img_list}")

logger.debug("Checking images and flavors for recommended attributes")
print_result('entropy-check-image-properties', check_image_attributes(all_images))
Expand Down

0 comments on commit 48cb865

Please sign in to comment.