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
Currently the game uses lots of "%s".format(string) to modify strings in the game. These should be refactored to use f-strings for consistency.
The text was updated successfully, but these errors were encountered:
Ruff can automatically refactor these by converting percent syntax into format UP031 then format syntax into f-strings UP032.
Sorry, something went wrong.
Interesting. I will have to look into that when I begin work on this issue. Thanks for bringing it to my attention!
adonutwithsprinklez
No branches or pull requests
Currently the game uses lots of "%s".format(string) to modify strings in the game. These should be refactored to use f-strings for consistency.
The text was updated successfully, but these errors were encountered: