We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab914a7 commit 3208e26Copy full SHA for 3208e26
tests/integration/go_ethereum/test_goethereum_http.py
@@ -4,6 +4,12 @@
4
get_open_port,
5
)
6
from web3 import Web3
7
+from web3.eth import (
8
+ AsyncEth,
9
+)
10
+from web3.providers.rpc import (
11
+ AsyncHTTPProvider,
12
13
14
from .common import (
15
GoEthereumAdminModuleTest,
@@ -15,14 +21,8 @@
21
GoEthereumVersionModuleTest,
16
22
17
23
from .utils import (
18
- wait_for_http,
19
24
wait_for_aiohttp,
20
-)
-from web3.providers.rpc import (
- AsyncHTTPProvider,
-from web3.eth import (
25
- AsyncEth,
+ wait_for_http,
26
27
28
tests/integration/go_ethereum/utils.py
@@ -1,8 +1,8 @@
1
-import aiohttp
2
import signal
3
import socket
import time
+import aiohttp
import requests
0 commit comments