From 135648423bf7764a83c94108a96d86aab6bb94e8 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Thu, 17 Apr 2025 14:16:43 +0200 Subject: [PATCH] TEMP do pairing on client creation --- python/src/trezorlib/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/src/trezorlib/client.py b/python/src/trezorlib/client.py index c2c9935c21..ee59367ce3 100644 --- a/python/src/trezorlib/client.py +++ b/python/src/trezorlib/client.py @@ -101,6 +101,7 @@ class TrezorClient: self._protocol_version = ProtocolVersion.V1 elif isinstance(self.protocol, ProtocolV2Channel): self._protocol_version = ProtocolVersion.V2 + self.do_pairing() else: raise Exception("Unknown protocol version")