1
0

Removed debug print
Some checks failed
Python Package / Package (push) Failing after 23s

This commit is contained in:
Jon Michael Aanes 2024-05-02 23:20:13 +02:00
parent c854200a3d
commit 8c333ada57
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -33,7 +33,6 @@ class BinaryReader:
if len(bts) != num_bytes: 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))) 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 assert len(bts) == num_bytes
print(' ', bts)
return bts return bts
def readDynamicBytes(self, size_reader = None) -> bytes: def readDynamicBytes(self, size_reader = None) -> bytes: