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
my_variable = None f"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111{my_variable}{my_variable} "
Command Line
$ autopep8 --in-place --experimental --max-line-length=99 my_file.py
my_variable = None f"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111{ my_variable} {my_variable} "
my_variable = None f"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111{ my_variable}{my_variable}"
The content of the string is modified. Spaces are added. What happens inside a string should not concern the code formatter.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Python Code
Command Line
$ autopep8 --in-place --experimental --max-line-length=99 my_file.py
Your Environment
Actual result
Desirable result
Description of the issue
The content of the string is modified. Spaces are added. What happens inside a string should not concern the code formatter.
The text was updated successfully, but these errors were encountered: