Skip to content
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.

Commit

Permalink
trezor: pass transport parameter explicitly as a keyword argument (sp…
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Zeyde authored and yura-pakhuchiy committed Jul 14, 2018
1 parent 5cef7ed commit 8f77c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/trezor/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

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)


Expand Down

0 comments on commit 8f77c30

Please sign in to comment.