From 2e627a82dd05197e9263dadecf0d92ddc32789bc Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Tue, 25 Mar 2025 12:31:44 +0100 Subject: [PATCH] fixup! feat(python): implement session based trezorlib --- python/src/trezorlib/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/src/trezorlib/client.py b/python/src/trezorlib/client.py index 03596eae0f..d1679a5482 100644 --- a/python/src/trezorlib/client.py +++ b/python/src/trezorlib/client.py @@ -105,9 +105,9 @@ class TrezorClient: should_derive: bool = True, ) -> Session: """ - Returns initialized session (with derived seed). + Returns a new session. - Will fail if the device is not initialized + In case of seed derivation, the function will fail if the device is not initialized. """ from .transport.session import SessionV1, derive_seed