[style] update python style to conform to PEP 8 (#3951)

With the exception of line length set to 119 vs. 79.

Add tests/ and tools/ to py-pretty-check.
This commit is contained in:
Jonathan Hui
2019-07-11 11:45:55 -04:00
committed by GitHub
parent a938ee2845
commit f924adcb60
341 changed files with 8702 additions and 4460 deletions
+28 -10
View File
@@ -38,11 +38,14 @@ import ipaddress
def expect_the_same_class(self, other):
if not isinstance(other, self.__class__):
raise TypeError("Expected the same class. Got {} and {}".format(type(self), type(other)))
raise TypeError(
"Expected the same class. Got {} and {}".format(
type(self), type(other)
)
)
class MessageInfo(object):
def __init__(self):
self.aux_sec_hdr = None
self.aux_sec_hdr_bytes = None
@@ -110,7 +113,6 @@ class MacAddressType(IntEnum):
class MacAddress(object):
def __init__(self, mac_address, _type, big_endian=True):
if _type == MacAddressType.SHORT:
length = 2
@@ -137,16 +139,26 @@ class MacAddress(object):
def convert_to_iid(self):
if self._type == MacAddressType.SHORT:
return bytearray([0x00, 0x00, 0x00, 0xff, 0xfe, 0x00]) + self._mac_address[:2]
return (
bytearray([0x00, 0x00, 0x00, 0xff, 0xfe, 0x00])
+ self._mac_address[:2]
)
elif self._type == MacAddressType.LONG:
return bytearray([self._mac_address[0] ^ 0x02]) + self._mac_address[1:]
return (
bytearray([self._mac_address[0] ^ 0x02])
+ self._mac_address[1:]
)
else:
raise RuntimeError("Could not convert to IID. Invalid MAC address type: {}".format(self._type))
raise RuntimeError(
"Could not convert to IID. Invalid MAC address type: {}".format(
self._type))
@classmethod
def from_eui64(cls, eui64, big_endian=True):
if not isinstance(eui64, bytearray):
raise RuntimeError("Could not create MAC address from EUI64. Invalid data type: {}".format(type(eui64)))
raise RuntimeError(
"Could not create MAC address from EUI64. Invalid data type: {}".format(
type(eui64)))
return cls(eui64, MacAddressType.LONG)
@@ -157,12 +169,18 @@ class MacAddress(object):
elif isinstance(rloc16, bytearray):
mac_address = rloc16[:2]
else:
raise RuntimeError("Could not create MAC address from RLOC16. Invalid data type: {}".format(type(rloc16)))
raise RuntimeError(
"Could not create MAC address from RLOC16. Invalid data type: {}".format(
type(rloc16)))
return cls(mac_address, MacAddressType.SHORT)
def __eq__(self, other):
return (self.type == other.type) and (self.mac_address == other.mac_address)
return (self.type == other.type) and (
self.mac_address == other.mac_address
)
def __repr__(self):
return "MacAddress(mac_address=b'{}', type={})".format(hexlify(self.mac_address), MacAddressType(self._type))
return "MacAddress(mac_address=b'{}', type={})".format(
hexlify(self.mac_address), MacAddressType(self._type)
)