diff options
| author | practicalswift <[email protected]> | 2018-04-16 11:13:07 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-04-16 17:25:11 +0200 |
| commit | f020aca297e8a6c9f7b6a6e08e583847d37edace (patch) | |
| tree | b7573c8faefcf5c92d21f1bd297fc72a8da3393f /test/functional/p2p_mempool.py | |
| parent | Merge #12993: tests: Remove compatibility code not needed now when we're on P... (diff) | |
| download | discoin-f020aca297e8a6c9f7b6a6e08e583847d37edace.tar.xz discoin-f020aca297e8a6c9f7b6a6e08e583847d37edace.zip | |
Minor Python cleanups to make flake8 pass with the new rules enabled
Diffstat (limited to 'test/functional/p2p_mempool.py')
| -rwxr-xr-x | test/functional/p2p_mempool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p_mempool.py b/test/functional/p2p_mempool.py index 485a8af3d..e54843b26 100755 --- a/test/functional/p2p_mempool.py +++ b/test/functional/p2p_mempool.py @@ -30,6 +30,6 @@ class P2PMempoolTests(BitcoinTestFramework): #mininode must be disconnected at this point assert_equal(len(self.nodes[0].getpeerinfo()), 0) - + if __name__ == '__main__': P2PMempoolTests().main() |