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
See flake8-pie's PIE782 code, since disabled due to false positives:
sbdchd/flake8-pie#24
The idea is to treat things like the following as a special case:
print(f"Hello world!")
In that example the f-prefix can be omitted, a plain string literal is enough:
print("Hello world!")
The text was updated successfully, but these errors were encountered:
This is covered by flake8 F541 since pyflakes 2.2.0 (released 2020-04-08).
This is also available in ruff https://docs.astral.sh/ruff/rules/f-string-missing-placeholders/
Sorry, something went wrong.
No branches or pull requests
See flake8-pie's PIE782 code, since disabled due to false positives:
sbdchd/flake8-pie#24
The idea is to treat things like the following as a special case:
In that example the f-prefix can be omitted, a plain string literal is enough:
The text was updated successfully, but these errors were encountered: