Skip to content

Commit 1111bb9

Browse files
author
MarcoFalke
committed
test: Reformat python imports to aid scripted diff
1 parent cd73721 commit 1111bb9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

test/functional/feature_notifications.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77

88
from test_framework.address import ADDRESS_BCRT1_UNSPENDABLE
99
from test_framework.test_framework import BitcoinTestFramework
10-
from test_framework.util import assert_equal, wait_until, connect_nodes_bi
10+
from test_framework.util import (
11+
assert_equal,
12+
wait_until,
13+
connect_nodes_bi,
14+
)
1115

1216

1317
class NotificationsTest(BitcoinTestFramework):

test/functional/rpc_rawtransaction.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717
from io import BytesIO
1818
from test_framework.messages import CTransaction, ToHex
1919
from test_framework.test_framework import BitcoinTestFramework
20-
from test_framework.util import assert_equal, assert_raises_rpc_error, connect_nodes_bi, hex_str_to_bytes
20+
from test_framework.util import (
21+
assert_equal,
22+
assert_raises_rpc_error,
23+
connect_nodes_bi,
24+
hex_str_to_bytes,
25+
)
26+
2127

2228
class multidict(dict):
2329
"""Dictionary that allows duplicate keys.

0 commit comments

Comments
 (0)