DataTLV is not subscriptable
This commit is contained in:
parent
8f3b7cd9d2
commit
d8cabcc6a3
|
@ -284,7 +284,7 @@ class DataTLV(TLV):
|
|||
self.nonce = socket.ntohl(int.from_bytes(raw_data[10:14], sys.byteorder))
|
||||
self.data = raw_data[14:len(self)]
|
||||
if self.data[-1] == 0:
|
||||
self.data = self[:-1]
|
||||
self.data = self.data[:-1]
|
||||
|
||||
def marshal(self) -> bytes:
|
||||
return self.type.to_bytes(1, sys.byteorder) + \
|
||||
|
|
Loading…
Reference in New Issue