Attention is currently required from: laforge.
Patch set 1:Code-Review -1
4 comments:
Patchset:
CR-1 due to non-existing '++' operator.
File pySim/ts_102_221.py:
Patch Set #1, Line 479: def from_bytes(self, binary:bytes):
Missing type hint:
-> list
Patch Set #1, Line 486: def to_bytes(self):
Missing type hint:
-> bytes
Looks like you meant '+=' here? This could be done simpler:
encoded = [self.children.encode(e) for e in self.decoded]
return b''.join(encoded)
To view, visit change 27129. To unsubscribe, or for help writing mail filters, visit settings.