1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-11 07:50:57 +00:00

tests: fix style

This commit is contained in:
matejcik 2020-02-10 15:44:02 +01:00
parent 8d93503c9c
commit 64838bca2d

View File

@ -35,7 +35,7 @@ def get_device():
try:
transport = get_transport(path)
return TrezorClientDebugLink(transport, auto_interact=not interact)
except Exception as e:
except Exception:
pytest.exit("Failed to open debuglink for {}".format(path), 3)
else: