Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
link19430 committed Sep 6, 2024
1 parent 55b2760 commit 420b46b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5830,9 +5830,10 @@ def enable_use_link_local_only(ctx, interface_name):

if (interface_type == "VLAN_INTERFACE"):
if not clicommon.check_if_vlanid_exist(db, interface_name):
ctx.fail("Vlan: {} is invalid. Please create vlan first!!".format(interface_name))
ctx.fail("Vlan: {} is invalid. Please create vlan first!!"
.format(interface_name))
if not clicommon.has_vlan_member(db, interface_name):
ctx.fail("Vlan: %s has no member joined. Please make sure at least one vlan member joined the vlan!"
ctx.fail("Vlan: {} has no member joined. Please make sure at least one vlan member joined the vlan!"
.format(interface_name))

portchannel_member_table = db.get_table('PORTCHANNEL_MEMBER')
Expand Down

0 comments on commit 420b46b

Please sign in to comment.