Skip to content

Commit bf18867

Browse files
chore: fix line length err
1 parent 5940409 commit bf18867

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

web3/_utils/method_formatters.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,12 @@ 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) # type: ignore [arg-type]
174+
formatted: Dict[str, Any]
175+
formatted = apply_formatters_to_dict(formatters, value) # type: ignore [arg-type]
175176
return (
176-
AttributeDict.recursive(formatted_dict)
177+
AttributeDict.recursive(formatted)
177178
if is_attrdict(value)
178-
else formatted_dict
179+
else formatted
179180
)
180181

181182

0 commit comments

Comments
 (0)