diff --git a/eth/tools/_utils/normalization.py b/eth/tools/_utils/normalization.py index 76c8871fdc..2ab1d7af09 100644 --- a/eth/tools/_utils/normalization.py +++ b/eth/tools/_utils/normalization.py @@ -128,7 +128,7 @@ def normalize_to_address(value: AnyStr) -> Address: return CREATE_CONTRACT_ADDRESS -robust_decode_hex = eth_utils.curried.hexstr_if_str(to_bytes) # type: ignore # https://github.com/ethereum/eth-utils/issues/156 # noqa: E501 +robust_decode_hex = eth_utils.curried.hexstr_if_str(to_bytes) # @@ -247,7 +247,7 @@ def state_definition_to_dict(state_definition: GeneralState) -> AccountState: "nonce": normalize_int, "storage": normalize_storage }, required=[])), - eth_utils.curried.apply_formatter_if( # type: ignore # https://github.com/ethereum/eth-utils/issues/156 # noqa: E501 + eth_utils.curried.apply_formatter_if( lambda s: isinstance(s, Iterable) and not isinstance(s, Mapping), state_definition_to_dict ),