mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-26 22:08:58 +01:00
script, test: fix python linter E275 errors with flake8 5.0.4
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user