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
Applying ruff --fix (v0.0.267) to this line
ruff --fix
file_contents += f" number {str(d['number'])}\n"
causes
error: Autofix introduced a syntax error. Reverting all changes.
The attempted fix is
pymatgen/io/packmol.py:217:42: RUF010 Use conversion in f-string
Workaround is to manually change to
file_contents += f" number {d['number']!s}\n"
The text was updated successfully, but these errors were encountered:
I can work on this.
Sorry, something went wrong.
RUF010
Successfully merging a pull request may close this issue.
Applying
ruff --fix
(v0.0.267) to this linecauses
The attempted fix is
Workaround is to manually change to
The text was updated successfully, but these errors were encountered: