Skip to content

Commit ec471e9

Browse files
authored
Update list.py
updated the fstring.
1 parent 9d09d7e commit ec471e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SoftLayer/CLI/block/access/list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
@click.argument('volume_id')
1515
@click.option('--columns',
1616
callback=column_helper.get_formatter(storage_utils.COLUMNS),
17-
help=f"Columns to display. Options are: { ', '.join(column.name for column in storage_utils.COLUMNS)}.",
17+
help=f"Columns to display. Options are: {', '.join(column.name for column in storage_utils.COLUMNS)}.",
1818
default=','.join(storage_utils.DEFAULT_COLUMNS))
1919
@click.option('--sortby',
20-
help=f"Column to sort by. Options are: { ', '.join(column.name for column in storage_utils.COLUMNS)}.",
20+
help=f"Column to sort by. Options are: {', '.join(column.name for column in storage_utils.COLUMNS)}.",
2121
default='name')
2222
@environment.pass_env
2323
def cli(env, columns, sortby, volume_id):

0 commit comments

Comments
 (0)