Skip to content

Commit f4bc4a6

Browse files
author
Shuotian Cheng
authored
[sonic-cfggen]: Remove extra Nones when return (#481)
Signed-off-by: Shuotian Cheng <[email protected]>
1 parent e0a3c2a commit f4bc4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sonic-config-engine/minigraph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def parse_dpg(dpg, hname):
233233
acls[aclname] = acl_intfs
234234

235235
return intfs, lo_intfs, mgmt_intf, vlans, pcs, acls
236-
return None, None, None, None, None, None, None, None
236+
return None, None, None, None, None, None
237237

238238

239239
def parse_cpg(cpg, hname):

0 commit comments

Comments
 (0)