We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ee49d commit b35b8c5Copy full SHA for b35b8c5
web3/_utils/method_formatters.py
@@ -173,11 +173,7 @@ def type_aware_apply_formatters_to_dict(
173
174
formatted: Dict[str, Any]
175
formatted = apply_formatters_to_dict(formatters, value) # type: ignore [arg-type]
176
- return (
177
- AttributeDict.recursive(formatted)
178
- if is_attrdict(value)
179
- else formatted
180
- )
+ return AttributeDict.recursive(formatted) if is_attrdict(value) else formatted
181
182
183
def type_aware_apply_formatters_to_dict_keys_and_values(
0 commit comments