Skip to content

Commit b70ef33

Browse files
committed
Fix errors and flake 8 issue
1 parent 34bf6ad commit b70ef33

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

web3/_utils/events.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
compose,
3333
curry,
3434
)
35-
from web3.exceptions import (
36-
MismatchedABI,
37-
)
3835

3936
from .abi import (
4037
exclude_indexed_event_inputs,

web3/providers/rpc.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
from web3._utils.request import (
1818
make_post_request,
1919
)
20-
from web3.middleware import (
21-
http_retry_request_middleware,
22-
)
2320

2421
from .base import (
2522
JSONBaseProvider,

web3/utils/__init__.py

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
from web3._utils import *
2-
import web3._utils.compat as compat
3-
import web3._utils.six as six
4-
import web3._utils.toolz as toolz
1+
from web3._utils import ( # noqa: F401
2+
abi,
3+
blocks,
4+
caching,
5+
compat,
6+
contracts,
7+
datatypes,
8+
decorators,
9+
empty,
10+
encoding,
11+
ens,
12+
events,
13+
filters,
14+
formatters,
15+
function_identifiers,
16+
http,
17+
hypothesis,
18+
math,
19+
module_testing,
20+
normalizers,
21+
request,
22+
rpc_abi,
23+
six,
24+
threads,
25+
toolz,
26+
transactions,
27+
validation,
28+
)

0 commit comments

Comments
 (0)