Skip to content

Commit

Permalink
Fix errors and flake 8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjw committed Sep 11, 2018
1 parent 34bf6ad commit b70ef33
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
3 changes: 0 additions & 3 deletions web3/_utils/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
compose,
curry,
)
from web3.exceptions import (
MismatchedABI,
)

from .abi import (
exclude_indexed_event_inputs,
Expand Down
3 changes: 0 additions & 3 deletions web3/providers/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
from web3._utils.request import (
make_post_request,
)
from web3.middleware import (
http_retry_request_middleware,
)

from .base import (
JSONBaseProvider,
Expand Down
32 changes: 28 additions & 4 deletions web3/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
from web3._utils import *
import web3._utils.compat as compat
import web3._utils.six as six
import web3._utils.toolz as toolz
from web3._utils import ( # noqa: F401
abi,
blocks,
caching,
compat,
contracts,
datatypes,
decorators,
empty,
encoding,
ens,
events,
filters,
formatters,
function_identifiers,
http,
hypothesis,
math,
module_testing,
normalizers,
request,
rpc_abi,
six,
threads,
toolz,
transactions,
validation,
)

0 comments on commit b70ef33

Please sign in to comment.