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
Operating system: CentOS 7.6
Python version: 3.6 Black version: 18.9b0
Does also happen on master: Yes.
Here's a basic example; Black adds two un-necessary carriage returns to this valid PEP-8 syntax, which is more compact. You can see from the example where this sort of string formatting is frequent. :)
Input:
fromexampleimportexample_executeexample=example_execute(""" SELECT something FROM something""")
Output:
fromexampleimportexample_executeexample=example_execute(
""" SELECT something FROM something"""
)
Apologies if this is a dupe, but I wasn't able to find an existing issue among the existing multi-line string issues. Thanks for your efforts - I love the package!
The text was updated successfully, but these errors were encountered:
Operating system: CentOS 7.6
Python version: 3.6
Black version: 18.9b0
Does also happen on master: Yes.
Here's a basic example; Black adds two un-necessary carriage returns to this valid PEP-8 syntax, which is more compact. You can see from the example where this sort of string formatting is frequent. :)
Input:
Output:
Apologies if this is a dupe, but I wasn't able to find an existing issue among the existing multi-line string issues. Thanks for your efforts - I love the package!
The text was updated successfully, but these errors were encountered: