Opcodes icon indicating copy to clipboard operation
Opcodes copied to clipboard

Incorrect implementation of `Opcode.__str__`

Open gsingh93 opened this issue 1 year ago • 0 comments

We're mixing two different formatting techniques in Python here:

def __str__(self):
    return "0x%02X".format(self.byte)

gsingh93 avatar Aug 27 '22 23:08 gsingh93