-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
T: styleWhat do we want Blackened code to look like?What do we want Blackened code to look like?
Description
Python version: 3.6.4
Black version: 18.4a0
Does also happen on master: yes
It's a little difficult to explain my problem. But I think the example below should be clear.
what black outputs:
a_function_who_return_a_list(
"a really really really really really long string with one line"
)[
0
]
a_function_who_return_a_function(
"""a string with
two lines"""
)(
"argument"
)what I expect:
a_function_who_return_a_list(
"a really really really really really long string with one line"
)[0]
a_function_who_return_a_function(
"""a string with
two lines"""
)("argument")rushter and kalgynirae
Metadata
Metadata
Assignees
Labels
T: styleWhat do we want Blackened code to look like?What do we want Blackened code to look like?