Skip to content

Commit 3208e26

Browse files
committed
Lint
1 parent ab914a7 commit 3208e26

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/integration/go_ethereum/test_goethereum_http.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
get_open_port,
55
)
66
from web3 import Web3
7+
from web3.eth import (
8+
AsyncEth,
9+
)
10+
from web3.providers.rpc import (
11+
AsyncHTTPProvider,
12+
)
713

814
from .common import (
915
GoEthereumAdminModuleTest,
@@ -15,14 +21,8 @@
1521
GoEthereumVersionModuleTest,
1622
)
1723
from .utils import (
18-
wait_for_http,
1924
wait_for_aiohttp,
20-
)
21-
from web3.providers.rpc import (
22-
AsyncHTTPProvider,
23-
)
24-
from web3.eth import (
25-
AsyncEth,
25+
wait_for_http,
2626
)
2727

2828

tests/integration/go_ethereum/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import aiohttp
21
import signal
32
import socket
43
import time
54

5+
import aiohttp
66
import requests
77

88

0 commit comments

Comments
 (0)