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 reason why tests do not run successfully on the spheroscope branch are lines 952f. in database.py:
database.py
pattern = fr"/{nm.name}(\[{', ?'.join(nm.valency * [r'[^,\s]+?'])}\])" repl = fr"/{nm.name}__{nm.valency}__v{nm.version}"
This yields a SyntaxError: f-string expression part cannot include a backslash. Does this maybe work in Python3.12, which is why you didn't catch it?
SyntaxError: f-string expression part cannot include a backslash
The text was updated successfully, but these errors were encountered:
SpitfireX
No branches or pull requests
The reason why tests do not run successfully on the spheroscope branch are lines 952f. in
database.py
:This yields a
SyntaxError: f-string expression part cannot include a backslash
. Does this maybe work in Python3.12, which is why you didn't catch it?The text was updated successfully, but these errors were encountered: