1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-20 01:56:15 +00:00

fix(python): open transport before get protocol in client

This commit is contained in:
M1nd3r 2025-03-11 16:09:42 +01:00
parent 2f26d3e8e9
commit 5c09501632

View File

@ -294,8 +294,8 @@ def list_devices(no_resolve: bool) -> Optional[Iterable["Transport"]]:
for transport in enumerate_devices():
try:
client = get_client(transport)
transport.open()
client = get_client(transport)
description = format_device_name(client.features)
except DeviceIsBusy:
description = "Device is in use by another process"