diff --git a/pbcabi/binaryreader.py b/pbcabi/binaryreader.py index 338b304..e2c3a74 100644 --- a/pbcabi/binaryreader.py +++ b/pbcabi/binaryreader.py @@ -33,7 +33,6 @@ class BinaryReader: if len(bts) != num_bytes: raise Exception("Could not read {read} (0x{read:02X}) bytes: Buffer only contained {size} (0x{size:02X}) bytes".format(read=num_bytes, size=len(bts))) assert len(bts) == num_bytes - print(' ', bts) return bts def readDynamicBytes(self, size_reader = None) -> bytes: