aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_implicitsegwit.py
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2022-10-04 15:18:42 +0200
committerjonatack <jon@atack.com>2023-01-03 10:59:56 -0800
commit459cb637aca80f744a8399e84bc78fab60de0b5c (patch)
treebcf2240137aed6850656680f64b881ef1b8201f7 /test/functional/wallet_implicitsegwit.py
parentcb552c5f21192d2f8f69c07130928c21301a5e7f (diff)
downloadbitcoin-459cb637aca80f744a8399e84bc78fab60de0b5c.tar.xz
script, test: fix python linter E275 errors with flake8 5.0.4
Diffstat (limited to 'test/functional/wallet_implicitsegwit.py')
-rwxr-xr-xtest/functional/wallet_implicitsegwit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_implicitsegwit.py b/test/functional/wallet_implicitsegwit.py
index 3ac0bbc17f..baa9bafb00 100755
--- a/test/functional/wallet_implicitsegwit.py
+++ b/test/functional/wallet_implicitsegwit.py
@@ -36,7 +36,7 @@ def check_implicit_transactions(implicit_keys, implicit_node):
pubkey = implicit_keys[a]
for b in address_types:
b_address = key_to_address(pubkey, b)
- assert(('receive', b_address) in tuple((tx['category'], tx['address']) for tx in txs))
+ assert ('receive', b_address) in tuple((tx['category'], tx['address']) for tx in txs)
class ImplicitSegwitTest(BitcoinTestFramework):
def add_options(self, parser):