From d69318ff148f99c2b77ba8acd17a7988797191cd Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Wed, 28 Mar 2018 21:00:38 +0300 Subject: [PATCH] trezor: pass transport parameter explicitly as a keyword argument (#4194) --- plugins/trezor/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/trezor/client.py b/plugins/trezor/client.py index 90710781f..89b5c2927 100644 --- a/plugins/trezor/client.py +++ b/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)