From 72d615446dcfece505ce617cead9ba81b25724e3 Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Sun, 13 Dec 2020 01:14:21 +0100 Subject: [PATCH] helpme: fix flake8 nits --- helpme/helpme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpme/helpme.py b/helpme/helpme.py index 9c9fc54..54795bf 100755 --- a/helpme/helpme.py +++ b/helpme/helpme.py @@ -452,7 +452,7 @@ node! Be prepared to lose your funds (but please report a bug if you do!) r += "INCOMPLETE: No bitcoins yet. Try 'helpme funds'" else: funds = Millisatoshi(1000 * sum([f['value'] for f in funds - if f['status'] == 'confirmed'])) + if f['status'] == 'confirmed'])) r += "COMPLETE ({} a.k.a {})".format(funds, funds.to_btc_str()) stages['funds'] = True