1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-12 17:38:13 +00:00

feat(python): add lock() to TrezorClientDebugLink

[no changelog]
This commit is contained in:
M1nd3r 2024-12-05 11:52:04 +01:00
parent cb2fb259b9
commit 5835f09879
2 changed files with 5 additions and 0 deletions

View File

@ -1437,6 +1437,10 @@ class TrezorClientDebugLink(TrezorClient):
# TODO is this needed?
# self.debug.close()
def lock(self) -> None:
s = SessionDebugWrapper(self.get_management_session())
s.lock()
def get_session(
self,
passphrase: str | object | None = "",

View File

@ -401,6 +401,7 @@ def client(
if use_passphrase and isinstance(setup_params["passphrase"], str):
_raw_client.use_passphrase(setup_params["passphrase"])
_raw_client.lock()
# TODO _raw_client.clear_session()
with ui_tests.screen_recording(_raw_client, request):