mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
trezor: pass transport parameter explicitly as a keyword argument (#4194)
This commit is contained in:
parent
facf833bac
commit
d69318ff14
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue