1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00

tests/config: fix usb hid logic

This commit is contained in:
Pavol Rusnak 2017-05-03 17:35:49 +02:00
parent 5860207e68
commit 91222b4687
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -52,10 +52,9 @@ def pipe_exists(path):
return False
if HID_ENABLED:
if HID_ENABLED and len(HidTransport.enumerate()) > 0:
devices = HidTransport.enumerate()
if len(devices) > 0:
print('Using TREZOR')
TRANSPORT = HidTransport
TRANSPORT_ARGS = (devices[0],)