From 8c333ada5734de526776cde524d4d67ae1f6a903 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Thu, 2 May 2024 23:20:13 +0200 Subject: [PATCH] Removed debug print --- pbcabi/binaryreader.py | 1 - 1 file changed, 1 deletion(-) 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: