You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ruff check --select UP025,UP032,W605 --fix --isolated pokedex/doc/tabledoc.py on a local copy of the https://github.com/veekun/pokedex repo reports Ruff introducing a syntax error. So, this seems to be an issue with Unicode literals in f-strings?
The text was updated successfully, but these errors were encountered:
## Summary
If a string has a Unicode prefix, we can't add the `r` prefix on top of
that -- we need to remove and replace it. (The Unicode prefix is
redundant anyway in Python 3.)
Closes#8967.
Using
ruff check --select UP025,UP032,W605 --fix --isolated pokedex/doc/tabledoc.py
on a local copy of the https://github.com/veekun/pokedex repo reports Ruff introducing a syntax error. So, this seems to be an issue with Unicode literals in f-strings?The text was updated successfully, but these errors were encountered: