From 898e2eea003c19e362cdb8fa5ab604f52966c9bd Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Thu, 2 Aug 2018 16:17:30 +0900 Subject: [PATCH] Make pycodestyle happy --- electrumx/server/chain_state.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrumx/server/chain_state.py b/electrumx/server/chain_state.py index cf386f4..8681c1b 100644 --- a/electrumx/server/chain_state.py +++ b/electrumx/server/chain_state.py @@ -131,8 +131,8 @@ class ChainState(object): for n, utxo in enumerate(db.get_utxos(hashX, limit), start=1): lines.append(f'UTXO #{n:,d}: tx_hash ' f'{hash_to_hex_str(utxo.tx_hash)} ' - f'tx_pos {utxo.tx_pos:,d} height {utxo.height:,d} ' - f'value {utxo.value:,d}') + f'tx_pos {utxo.tx_pos:,d} height ' + f'{utxo.height:,d} value {utxo.value:,d}') if n is None: lines.append('No UTXOs found')