From 4f92d2b14db6d87ec1470a7b1677cc3ec971598a Mon Sep 17 00:00:00 2001 From: matejcik Date: Tue, 25 Aug 2020 16:05:13 +0200 Subject: [PATCH] python: call EndSession when requested --- python/src/trezorlib/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/trezorlib/client.py b/python/src/trezorlib/client.py index ef831038f..be1d2f663 100644 --- a/python/src/trezorlib/client.py +++ b/python/src/trezorlib/client.py @@ -385,7 +385,7 @@ class TrezorClient: The session will become invalid until `init_device()` is called again. If passphrase is enabled, further actions will prompt for it again. """ - # XXX self.call(messages.EndSession()) + self.call(messages.EndSession()) self.session_id = None @tools.session