We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
""" {} """.format("hi")
should be formatted as
""" {} """.format( "hi" )
This depends on the string content, e.g.
"""{}""".format("hi")
does not get expanded.
The text was updated successfully, but these errors were encountered:
It looks like this no longer happens in Black's preview style: https://black.vercel.app/?version=main&state=_Td6WFoAAATm1rRGAgAhARYAAAB0L-Wj4ACHAFhdAD2IimZxl1N_Wk8Jgdzhwf57J25o-MMyJFDdKTbHVMsgIS4qWrqO3MV-q3-8HoAKJvbhIFbv_2jUfXQyafZeaz7n_OCmk3vdd7F3rCF3dZvDEseZ-a6DkyQAYnRsQVfRpAwAAXSIAQAAADwHzGqxxGf7AgAAAAAEWVo=
Sorry, something went wrong.
Okay, I think it's psf/black#256 and psf/black#1879. Closing as I think this is reasonable given it's in preview.
However, there's another behavior implemented in the linked PRs that we don't have: #6581.
No branches or pull requests
should be formatted as
This depends on the string content, e.g.
does not get expanded.
The text was updated successfully, but these errors were encountered: