Closed inikolaev closed 1 month ago
After upgrading project to Python 3.12 pyupgrade started to break:
pyupgrade
s = f"\N{EN DASH}"
is being changed into
s = f"\N{{EN DASH}}"
which is invalid.
I tested revering back to 3.11 and rerunning pyupgrade and everything looks good.
what version are you using?
Sorry, haven't noticed your comment earlier. I was using 3.18.0, I'll try the fix you've just released, thank you!
After upgrading project to Python 3.12
pyupgrade
started to break:is being changed into
which is invalid.
I tested revering back to 3.11 and rerunning
pyupgrade
and everything looks good.