From a5abd706194e669cd92cd89c7d13ff0d7ffb9956 Mon Sep 17 00:00:00 2001 From: matejcik Date: Mon, 1 Oct 2018 14:45:35 +0200 Subject: [PATCH] trezorlib: drop TrezorClientDebugLink from client.py --- trezorlib/client.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index 91f4c356ba..f44b5c5702 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -294,8 +294,3 @@ class ProtocolMixin(object): class TrezorClient(ProtocolMixin, BaseClient): def __init__(self, transport, *args, **kwargs): super().__init__(transport=transport, *args, **kwargs) - - -class TrezorClientDebugLink(ProtocolMixin, DebugLinkMixin, BaseClient): - def __init__(self, transport, *args, **kwargs): - super().__init__(transport=transport, *args, **kwargs)