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
This snippet causes unstable formatting:
x = ("""aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa""" """bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb""")
We first break it, then realize it fits in a line without the parentheses and undo that:
--- --- Formatted once +++ Formatted twice @@ -1,4 +1 @@ -x = ( - """aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa""" - """bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb""" -) +x = """aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa""" """bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb""" --- Formatted once: --- x = ( """aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa""" """bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb""" ) --- Formatted twice: --- x = """aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa""" """bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb""" ---
The text was updated successfully, but these errors were encountered:
This could be related to it being in the assignment position.
Playground
Sorry, something went wrong.
I'm taking this on as it seems to be fixed in my local branch for #6271
MichaReiser
Successfully merging a pull request may close this issue.
This snippet causes unstable formatting:
We first break it, then realize it fits in a line without the parentheses and undo that:
The text was updated successfully, but these errors were encountered: