Skip to content

Commit 5940409

Browse files
Update method_formatters.py
1 parent 015bbf1 commit 5940409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web3/_utils/method_formatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def type_aware_apply_formatters_to_dict(
171171
if isinstance(value, BaseModel):
172172
value = value.model_dump(by_alias=True)
173173

174-
formatted_dict: Dict[str, Any] = apply_formatters_to_dict(formatters, value)
174+
formatted_dict: Dict[str, Any] = apply_formatters_to_dict(formatters, value) # type: ignore [arg-type]
175175
return (
176176
AttributeDict.recursive(formatted_dict)
177177
if is_attrdict(value)

0 commit comments

Comments
 (0)