Describe the style change
Strange indentation of a long assert statement, in --preview (it works correctly in the stable branch).
Examples in the current (preview) Black style
assert (
result
== "Lorem ipsum dolor sit amet,\n"
"consectetur adipiscing elit,\n"
"sed doeiusmod tempor incididunt\n"
)
Desired style
assert result == (
"Lorem ipsum dolor sit amet,\n"
"consectetur adipiscing elit,\n"
"sed doeiusmod tempor incididunt\n"
)
Additional context
Similar to #3409
Describe the style change
Strange indentation of a long
assertstatement, in--preview(it works correctly in the stable branch).Examples in the current (preview) Black style
Desired style
Additional context
Similar to #3409