Skip to content

Commit ddadc2b

Browse files
authored
[show]: Fix improper indents (sonic-net#119)
1 parent 2c63a41 commit ddadc2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

show/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,9 @@ def details(interfacename):
218218
@interfaces.command()
219219
@click.argument('interfacename', required=False)
220220
def description(interfacename):
221-
if interfacename is not None:
221+
if interfacename is not None:
222222
command = "sudo vtysh -c 'show interface {}'".format(interfacename)
223-
else:
223+
else:
224224
command = "sudo vtysh -c 'show interface description'"
225225

226226
run_command(command)

0 commit comments

Comments
 (0)