Codemod idea: change annotation strings to not strings
Open
codemod
enhancement
- Dominant language
- Python
- Stars
- 1.9k
- Forks
- 229
- PR merge metrics
- No merged PRs in 30d
Description
Latest Python version allows to change:
```py
def foo() -> "A":
...
```
into:
```py
from __future__ import annotations
def foo() -> A:
...
```
It would be nice if there is a codemod that removes the quotations/string markers from annotations so that one can fully use the annotations future feature ;).
Contributor guide
Assessment
This issue has not been assessed yet.