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
Describe the bug Black does not seem to format expressions inside f-strings.
To Reproduce Example file contents:
1+2 f"{1+2}"
Result after running black:
1 + 2 f"{1+2}"
Expected behavior Expected result after formatting:
1 + 2 f"{1 + 2}"
Environment:
Does this bug also happen on master? Yes (tried in online version)
The text was updated successfully, but these errors were encountered:
Duplicate of #567 (although this issue actually has a better title).
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Black does not seem to format expressions inside f-strings.
To Reproduce
Example file contents:
Result after running black:
Expected behavior
Expected result after formatting:
Environment:
Does this bug also happen on master?
Yes (tried in online version)
The text was updated successfully, but these errors were encountered: