Skip to content

Commit 3715cd0

Browse files
author
Kevin McDonald
committed
Fix minor style issue
1 parent dd84320 commit 3715cd0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

SoftLayer/CLI/image/list.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ def cli(env, name, public):
2424

2525
images = []
2626
if public in [False, None]:
27-
for image in image_mgr.list_private_images(name=name, mask=image_mod.MASK):
27+
for image in image_mgr.list_private_images(name=name,
28+
mask=image_mod.MASK):
2829
images.append(image)
2930

3031
if public in [True, None]:
31-
for image in image_mgr.list_public_images(name=name, mask=image_mod.MASK):
32+
for image in image_mgr.list_public_images(name=name,
33+
mask=image_mod.MASK):
3234
images.append(image)
3335

3436
table = formatting.Table(['id',

0 commit comments

Comments
 (0)