debug print

This commit is contained in:
Paul Warren 2024-10-14 16:20:43 +11:00
parent 8a925769bb
commit e6fbb44f2a

View file

@ -23,7 +23,6 @@ class DataType():
def encode_to_buffer(self, value): def encode_to_buffer(self, value):
encoder = BinaryPayloadBuilder(byteorder=Endian.BIG, wordorder=Endian.BIG) encoder = BinaryPayloadBuilder(byteorder=Endian.BIG, wordorder=Endian.BIG)
print(type(value))
self._add(encoder, value) self._add(encoder, value)
return encoder.build() return encoder.build()