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
The following snippet is a minimal reproduction:
x = 5 '".'.format(x)
The fix attempted:
x = 5 "".".format()
ruff check format.py --fix --isolated
Built on e82160a (latest, bleeding).
Discovered by #4822.
The text was updated successfully, but these errors were encountered:
Thanks!
Sorry, something went wrong.
Looks like F523 always uses double quotes: new_format_string = format!(r#""{new_format_string}""#);
new_format_string = format!(r#""{new_format_string}""#);
charliermarsh
Successfully merging a pull request may close this issue.
Reproduction
The following snippet is a minimal reproduction:
The fix attempted:
Command line
Version information
Built on e82160a (latest, bleeding).
Misc
Discovered by #4822.
The text was updated successfully, but these errors were encountered: