Skip to content

Commit 91da7b3

Browse files
caberoscaberos
authored andcommitted
fix the tox tool
1 parent fdd1f6d commit 91da7b3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

SoftLayer/CLI/file/options.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ def cli(env, prices, location=None):
3333
datacenter['keyname']])
3434

3535
tables.append(datacenter_table)
36-
tables.append(_ios_get_table(items, prices))
36+
tables.append(_file_ios_get_table(items, prices))
3737
tables.append(_file_storage_table(items, prices))
38-
tables.append(_snapshot_get_table(items, prices))
38+
tables.append(_file_snapshot_get_table(items, prices))
3939
env.fout(tables)
4040

4141

42-
def _ios_get_table(items, prices):
42+
def _file_ios_get_table(items, prices):
4343
if prices:
4444
table = formatting.Table(['Id', 'Description', 'KeyName', 'Prices'], title='IOPS')
4545
for item in items:
@@ -76,7 +76,7 @@ def _file_storage_table(items, prices):
7676
return table
7777

7878

79-
def _snapshot_get_table(items, prices):
79+
def _file_snapshot_get_table(items, prices):
8080
if prices:
8181
table = formatting.Table(['Id', 'Description', 'KeyName', 'Prices'], title='Snapshot')
8282
for item in items:

0 commit comments

Comments
 (0)