Commit 4513dc44 authored by Ignacio Corderi's avatar Ignacio Corderi
Browse files

Fixed problem with some pin ops

parent 0cd12b40
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -502,21 +502,21 @@ class UnlockDevice(BasePinOperation):
        self.pin_op_type = messages.Command.PinOperation.UNLOCK_PINOP


class LockDevice(BaseOperation):
class LockDevice(BasePinOperation):

    def __init__(self):
        super(LockDevice, self).__init__()
        self.pin_op_type = messages.Command.PinOperation.LOCK_PINOP


class EraseDevice(BaseOperation):
class EraseDevice(BasePinOperation):

    def __init__(self):
        super(EraseDevice, self).__init__()
        self.pin_op_type = messages.Command.PinOperation.ERASE_PINOP


class SecureEraseDevice(BaseOperation):
class SecureEraseDevice(BasePinOperation):

    def __init__(self):
        super(SecureEraseDevice, self).__init__()