1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-17 03:48:09 +00:00

style: fix flake8 error

This commit is contained in:
Pavol Rusnak 2017-11-08 21:25:15 +01:00
parent 04bb0069c0
commit b9b11fa265
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -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