Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kclowes committed Apr 12, 2021
1 parent 8fd0099 commit e88feb1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions web3/_utils/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,20 @@
Dict,
Optional,
Sequence,
TypeVar,
Union,
)

from web3.exceptions import (
ValidationError,
)

T = TypeVar("T")

if TYPE_CHECKING:
from web3 import Web3 # noqa: F401
from web3.module import ModuleV2 # noqa: F401


def attach_modules(
parent_module: T,
parent_module: Union["Web3", "ModuleV2"],
module_definitions: Dict[str, Sequence[Any]],
w3: Optional["Web3"] = None
) -> None:
Expand Down

0 comments on commit e88feb1

Please sign in to comment.