Skip to content

Commit

Permalink
Remove unused import and suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
thebevrishot committed Sep 10, 2020
1 parent 83f7ef8 commit 455bde9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions qa/rpc-tests/wallet-encryption.py
Expand Up @@ -13,17 +13,15 @@
assert_equal,
assert_raises_jsonrpc,
bitcoind_processes,
BITCOIND_PROC_WAIT_TIMEOUT,
start_node,
start_nodes,
)

class WalletEncryptionTest(BitcoinTestFramework):

def __init__(self):
super().__init__()
self.setup_clean_chain = True
self.num_nodes = 1
self.setup_clean_chain = True # lgtm [py/overwritten-inherited-attribute]
self.num_nodes = 1 # lgtm [py/overwritten-inherited-attribute]

def get_otp(self, address):
# assume test on only 1 node
Expand Down

0 comments on commit 455bde9

Please sign in to comment.