After #5766 the auto-fixer for UP036 has broken some code for us: ```diff from typing import Any import cachetools class MyClass: def __init__(self) -> None: self._cache: "cachetools.LRUCache[Any, Any]" = cachetools.LRUCache(maxsize=100) ``` ``` ruff --isolated --select UP --fix ruff_up037.py ``` > ruff_up037.py:7:22: UP037 [*] Remove quotes from type annotation The auto-fixer strips the quotes. However this is semantically not valid, as `LRUCache` is not `Generic` at runtime, only for the `pyi` files. ``` $ ruff --version ruff 0.0.280 ```