From 81ae1d0ec09ae217a170d2bd8d2199ab3866815e Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 3 Feb 2021 14:57:59 +0100 Subject: [PATCH] fix(python): remove extraneous empty line from descriptors output [skip_ci] --- python/src/trezorlib/cli/btc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/src/trezorlib/cli/btc.py b/python/src/trezorlib/cli/btc.py index 736f98401..399b59cf6 100644 --- a/python/src/trezorlib/cli/btc.py +++ b/python/src/trezorlib/cli/btc.py @@ -240,7 +240,6 @@ def get_descriptor(client, coin, account, script_type, show_display): """Get descriptor of given account.""" try: ds = _get_descriptor(client, coin, account, script_type, show_display) - click.echo() for d in ds: click.echo(d) except ValueError as e: