-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
T: styleWhat do we want Blackened code to look like?What do we want Blackened code to look like?
Description
1. Summary
It would be nice, if Black will wrap long strings.
2. Example
I have SashaLongStrings.py
file:
print("She's the one for me, She's my ecstasy, She's the one I need. She's one in a million, She's once in a lifetime, She made me discover one of the stars above us.")
Line contains 168 characters.
I run command:
black --line-length 120 SashaLongStrings.py
Result:
print("She's the one for me, She's my ecstasy, She's the one I need. She's one in a million, She's once in a lifetime, "
"She made me discover one of the stars above us.")
Lines contains ≤ 120 symbols.
3. Details
See more details in my question in Software Recommendations.
Thanks.
frabcus, benekastah, unnamedplay-r, 098799, hgezim and 71 more
Metadata
Metadata
Assignees
Labels
T: styleWhat do we want Blackened code to look like?What do we want Blackened code to look like?