This commit is contained in:
ThomasV 2017-08-28 05:30:56 +02:00
parent b46e86d3c7
commit fbe27fce04
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
from digitalbitbox import DigitalBitboxPlugin
from electrum.util import print_msg
from .digitalbitbox import DigitalBitboxPlugin
class DigitalBitboxCmdLineHandler:
def stop(self):

View File

@ -1,5 +1,5 @@
from keepkey import KeepKeyPlugin
from electrum.util import print_msg
from .keepkey import KeepKeyPlugin
class KeepKeyCmdLineHandler:

View File

@ -1,5 +1,5 @@
from ledger import LedgerPlugin
from electrum.util import print_msg
from .ledger import LedgerPlugin
class BTChipCmdLineHandler:
def stop(self):

View File

@ -1,5 +1,5 @@
from trezor import TrezorPlugin
from electrum.util import print_msg
from .trezor import TrezorPlugin
class TrezorCmdLineHandler: