Skip to content

Commit 6392266

Browse files
committed
appease lint (eth-utils updated)
1 parent 3bd386c commit 6392266

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eth/tools/_utils/normalization.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def normalize_to_address(value: AnyStr) -> Address:
128128
return CREATE_CONTRACT_ADDRESS
129129

130130

131-
robust_decode_hex = eth_utils.curried.hexstr_if_str(to_bytes) # type: ignore # https://github.com/ethereum/eth-utils/issues/156 # noqa: E501
131+
robust_decode_hex = eth_utils.curried.hexstr_if_str(to_bytes)
132132

133133

134134
#
@@ -247,7 +247,7 @@ def state_definition_to_dict(state_definition: GeneralState) -> AccountState:
247247
"nonce": normalize_int,
248248
"storage": normalize_storage
249249
}, required=[])),
250-
eth_utils.curried.apply_formatter_if( # type: ignore # https://github.com/ethereum/eth-utils/issues/156 # noqa: E501
250+
eth_utils.curried.apply_formatter_if(
251251
lambda s: isinstance(s, Iterable) and not isinstance(s, Mapping),
252252
state_definition_to_dict
253253
),

0 commit comments

Comments
 (0)