From b9b11fa26574321f6d363f6b78199cbfb712f2da Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 8 Nov 2017 21:25:15 +0100 Subject: [PATCH] style: fix flake8 error --- trezorlib/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index 2f97cf3e4..e6ee69a0e 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -356,7 +356,7 @@ class DebugLinkMixin(object): # Evaluate missed responses in 'with' statement if self.expected_responses is not None and len(self.expected_responses): raise RuntimeError("Some of expected responses didn't come from device: %s" % - [pprint(x) for x in self.expected_responses]) + [pprint(x) for x in self.expected_responses]) # Cleanup self.expected_responses = None