ruff
10885d09 - Add support for top-level quoted annotations in RUF013 (#5235)

Commit
2 years ago
Add support for top-level quoted annotations in RUF013 (#5235) ## Summary This PR adds support for autofixing annotations like: ```python def f(x: "int" = None): ... ``` However, we don't yet support nested quotes, like: ```python def f(x: Union["int", "str"] = None): ... ``` Closes #5231.
Author
Parents
Loading