[sonic-cfggen]: Remove extra Nones when return (#481)

Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
This commit is contained in:
Shuotian Cheng 2017-04-05 14:25:59 -07:00 committed by GitHub
parent e0a3c2aa57
commit f4bc4a68b8

View File

@ -233,7 +233,7 @@ def parse_dpg(dpg, hname):
acls[aclname] = acl_intfs
return intfs, lo_intfs, mgmt_intf, vlans, pcs, acls
return None, None, None, None, None, None, None, None
return None, None, None, None, None, None
def parse_cpg(cpg, hname):