Browse Source

trezor: pass transport parameter explicitly as a keyword argument (#4194)

3.2.x
Roman Zeyde 7 years ago
committed by ghost43
parent
commit
d69318ff14
  1. 4
      plugins/trezor/client.py

4
plugins/trezor/client.py

@ -3,8 +3,8 @@ from .clientbase import TrezorClientBase
class TrezorClient(TrezorClientBase, ProtocolMixin, BaseClient):
def __init__(self, transport, handler, plugin):
BaseClient.__init__(self, transport)
ProtocolMixin.__init__(self, transport)
BaseClient.__init__(self, transport=transport)
ProtocolMixin.__init__(self, transport=transport)
TrezorClientBase.__init__(self, handler, plugin, proto)

Loading…
Cancel
Save