Files
pallectrum/plugins/keepkey/client.py

15 lines
528 B
Python
Raw Normal View History

from keepkeylib.client import proto, BaseClient, ProtocolMixin
2017-12-04 14:06:37 +01:00
from .clientbase import KeepKeyClientBase
2017-12-04 14:06:37 +01:00
class KeepKeyClient(KeepKeyClientBase, ProtocolMixin, BaseClient):
2016-01-20 00:28:54 +09:00
def __init__(self, transport, handler, plugin):
BaseClient.__init__(self, transport)
ProtocolMixin.__init__(self, transport)
2017-12-04 14:06:37 +01:00
KeepKeyClientBase.__init__(self, handler, plugin, proto)
def recovery_device(self, *args):
ProtocolMixin.recovery_device(self, False, *args)
2017-12-04 14:06:37 +01:00
KeepKeyClientBase.wrap_methods(KeepKeyClient)