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
When an long expression contains function calls and joining operators black will choose to break the function call if the arguments exceeds the maximum line length. This can look pretty ugly. Instead, I think that black should break the outmost (least nested) parts of the expressions before inner parts of the expression.
Describe the style change
When an long expression contains function calls and joining operators black will choose to break the function call if the arguments exceeds the maximum line length. This can look pretty ugly. Instead, I think that black should break the outmost (least nested) parts of the expressions before inner parts of the expression.
Examples in the current Black style
Desired style
This will improve clarity in general as all "levels" of the expression will occur at the same level of indentation.
The text was updated successfully, but these errors were encountered: