trezor: pass transport parameter explicitly as a keyword argument (#4194)
This commit is contained in:
@@ -3,8 +3,8 @@ from .clientbase import TrezorClientBase
|
|||||||
|
|
||||||
class TrezorClient(TrezorClientBase, ProtocolMixin, BaseClient):
|
class TrezorClient(TrezorClientBase, ProtocolMixin, BaseClient):
|
||||||
def __init__(self, transport, handler, plugin):
|
def __init__(self, transport, handler, plugin):
|
||||||
BaseClient.__init__(self, transport)
|
BaseClient.__init__(self, transport=transport)
|
||||||
ProtocolMixin.__init__(self, transport)
|
ProtocolMixin.__init__(self, transport=transport)
|
||||||
TrezorClientBase.__init__(self, handler, plugin, proto)
|
TrezorClientBase.__init__(self, handler, plugin, proto)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user