Files
purple-electrumwallet/plugins/keepkey/qt.py
T

12 lines
315 B
Python
Raw Normal View History

2016-01-02 23:34:10 +09:00
from ..trezor.qt_generic import qt_plugin_class
2016-01-02 09:43:56 +09:00
from keepkey import KeepKeyPlugin
2015-12-31 11:36:33 +09:00
2015-11-23 19:38:48 +01:00
2016-01-02 09:43:56 +09:00
class Plugin(qt_plugin_class(KeepKeyPlugin)):
icon_file = ":icons/keepkey.png"
2015-12-31 11:36:33 +09:00
2016-01-02 09:43:56 +09:00
@classmethod
def pin_matrix_widget_class(self):
2015-12-31 11:36:33 +09:00
from keepkeylib.qt.pinmatrix import PinMatrixWidget
return PinMatrixWidget