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
In my code base, I usually handle long strings by breaking them within parens. When black puts the split string onto one line, it still keeps the strings separate. The example below should make it clear:
- raise IndexError("arrays used as indices must be of integer "
- "(or boolean) type")
+ raise IndexError(
+ "arrays used as indices must be of integer " "(or boolean) type"
+ )
Question is: Can this be fixed or is there a reason why it needs to be this way?
Operating system: Ubuntu 18.04
Python version: 3.6
Black version: 18.5b0
Does also happen on master: yes
The text was updated successfully, but these errors were encountered:
In my code base, I usually handle long strings by breaking them within parens. When black puts the split string onto one line, it still keeps the strings separate. The example below should make it clear:
Question is: Can this be fixed or is there a reason why it needs to be this way?
Operating system: Ubuntu 18.04
Python version: 3.6
Black version: 18.5b0
Does also happen on master: yes
The text was updated successfully, but these errors were encountered: