Skip to content

Commit 37c26d5

Browse files
committed
fix: Removed where it isn't optional
1 parent ef9a25d commit 37c26d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web3/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def solidity_keccak(cls, abi_types: List[TypeStr], values: List[Any]) -> bytes:
350350
return cls.keccak(hexstr=hex_string)
351351

352352
def attach_modules(
353-
self, modules: Optional[Dict[str, Union[Type[Module], Sequence[Any]]]]
353+
self, modules: Dict[str, Union[Type[Module], Sequence[Any]]]
354354
) -> None:
355355
"""
356356
Attach modules to the `Web3` instance.

0 commit comments

Comments
 (0)