Skip to content

Commit 86ae1be

Browse files
committed
chore: fix line length err
1 parent 61942e6 commit 86ae1be

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
@@ -172,7 +172,7 @@ def type_aware_apply_formatters_to_dict(
172172
value = value.model_dump(by_alias=True)
173173

174174
formatted: Dict[str, Any]
175-
formatted = apply_formatters_to_dict(formatters, value)
175+
formatted = apply_formatters_to_dict(formatters, value) # type: ignore [arg-type]
176176
return AttributeDict.recursive(formatted) if is_attrdict(value) else formatted
177177

178178

0 commit comments

Comments
 (0)