From 15e33b42c075aa7ec904868dcb77a9fa2473af36 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Tue, 5 May 2020 07:05:53 +0000 Subject: [PATCH] python: style --- python/src/trezorlib/cli/firmware.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/src/trezorlib/cli/firmware.py b/python/src/trezorlib/cli/firmware.py index 0bfd628d1..8944a0bf6 100644 --- a/python/src/trezorlib/cli/firmware.py +++ b/python/src/trezorlib/cli/firmware.py @@ -74,9 +74,7 @@ def validate_firmware(version, fw, expected_fingerprint=None): fingerprint_onev2 = firmware.digest( firmware.FirmwareFormat.TREZOR_ONE_V2, fw.embedded_onev2 ).hex() - click.echo( - "Embedded v2 image fingerprint: {}".format(fingerprint_onev2) - ) + click.echo("Embedded v2 image fingerprint: {}".format(fingerprint_onev2)) if expected_fingerprint and fingerprint != expected_fingerprint: click.echo("Expected fingerprint: {}".format(expected_fingerprint)) click.echo("Fingerprints do not match, aborting.")