You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-agent/libagent/device/trezor_defs.py

14 lines
435 B
Python

"""TREZOR-related definitions."""
# pylint: disable=unused-import,import-error
from trezorlib.client import CallException, PinException
from trezorlib.client import TrezorClient as Client
from trezorlib.messages import IdentityType, PassphraseAck, PinMatrixAck, PassphraseStateAck
from trezorlib.device import TrezorDevice
def enumerate_transports():
"""Returns all available transports."""
return TrezorDevice.enumerate()