You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nested_mapping= {
"key": [
{
"a very long key 1": "with a very long value",
"a very long key 2": "with a very long value",
}
]
}
nested_array= [
[
1,
2,
3,
]
]
After:
nested_mapping= {
"key": [{
"a very long key 1": "with a very long value",
"a very long key 2": "with a very long value",
}]
}
nested_array= [[
1,
2,
3,
]]
yilei
added a commit
to yilei/black
that referenced
this issue
Nov 1, 2023
Describe the style change
#3964 handled the most common case from #1811, and I'd like the following cases to be handled too:
See playgroud.
Desired style
Additional context
I'll send a PR if this proposal looks good.
The text was updated successfully, but these errors were encountered: