lib/packet/lldp.py: pylint
> W: 78,0:LLDPBasicTLV.__init__: Unused argument 'args' > W: 78,0:LLDPBasicTLV.__init__: Unused argument 'kwargs' > W:109,4:lldp.__init__: __init__ method from base class 'PacketBase' is not called Cc: "can." <can@canx.me> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
521fbcf000
commit
3a4bdd3296
@ -75,7 +75,8 @@ class LLDPBasicTLV(object):
|
||||
_LEN_MAX = 511
|
||||
tlv_type = None
|
||||
|
||||
def __init__(self, buf=None, *args, **kwargs):
|
||||
def __init__(self, buf=None, *_args, **_kwargs):
|
||||
super(LLDPBasicTLV, self).__init__()
|
||||
if buf:
|
||||
(self.typelen, ) = struct.unpack(
|
||||
LLDP_TLV_TYPELEN_STR, buf[:LLDP_TLV_SIZE])
|
||||
@ -108,6 +109,7 @@ class lldp(packet_base.PacketBase):
|
||||
tlvs = []
|
||||
|
||||
def __init__(self, tlvs):
|
||||
super(lldp, self).__init__()
|
||||
self.tlvs = tlvs
|
||||
length = 0
|
||||
for tlv in tlvs:
|
||||
|
Loading…
Reference in New Issue
Block a user