From ba8bb9909737e6ea13014b06cb87b8c8f4d18290 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 6 Feb 2018 21:39:02 +0100 Subject: [PATCH] fix flake8 error --- trezorlib/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index efa0562c64..8de8ef108d 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -894,7 +894,7 @@ class ProtocolMixin(object): # If there's some part of signed transaction, let's add it if res.serialized and res.serialized.serialized_tx: - #log("RECEIVED PART OF SERIALIZED TX (%d BYTES)" % len(res.serialized.serialized_tx)) + # log("RECEIVED PART OF SERIALIZED TX (%d BYTES)" % len(res.serialized.serialized_tx)) serialized_tx += res.serialized.serialized_tx if res.serialized and res.serialized.signature_index is not None: @@ -963,7 +963,7 @@ class ProtocolMixin(object): if None in signatures: raise RuntimeError("Some signatures are missing!") - #log("SIGNED IN %.03f SECONDS, CALLED %d MESSAGES, %d BYTES" % + # log("SIGNED IN %.03f SECONDS, CALLED %d MESSAGES, %d BYTES" % # (time.time() - start, counter, len(serialized_tx))) return (signatures, serialized_tx)