From 68e6a0077b55a89aaed9f4724266e564ca92f7e0 Mon Sep 17 00:00:00 2001 From: matejcik Date: Thu, 29 Aug 2019 15:19:02 +0200 Subject: [PATCH] style: fix import order in trezorlib/misc.py --- python/src/trezorlib/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/trezorlib/misc.py b/python/src/trezorlib/misc.py index 653739298..fad629963 100644 --- a/python/src/trezorlib/misc.py +++ b/python/src/trezorlib/misc.py @@ -15,7 +15,7 @@ # If not, see . from . import messages -from .tools import expect, Address +from .tools import Address, expect if False: from .client import TrezorClient