Skip to content

Commit 2d55c6f

Browse files
author
caberos
committed
fix tox tool
1 parent 6f82187 commit 2d55c6f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

SoftLayer/CLI/subnet/detail.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ def cli(env, identifier, no_vs, no_hardware):
5050

5151
ip_address = subnet.get('ipAddresses')
5252

53-
ip_table = formatting.KeyValueTable(['ipAddress','value'])
53+
ip_table = formatting.KeyValueTable(['ipAddress', 'value'])
5454
for address in ip_address:
55-
ip_table.add_row([address.get('id'),address.get('ipAddress')])
55+
ip_table.add_row([address.get('id'), address.get('ipAddress')])
5656

5757
table.add_row(['ipAddresses', ip_table])
5858

docs/cli/subnet.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ Subnets
2222
.. click:: SoftLayer.CLI.subnet.lookup:cli
2323
:prog: subnet lookup
2424
:show-nested:
25+
26+
.. click:: SoftLayer.CLI.subnet.edit-ip:cli
27+
:prog: subnet edit-ip
28+
:show-nested:

0 commit comments

Comments
 (0)