### Summary [custom-type-var-for-self (PYI019)](https://docs.astral.sh/ruff/rules/custom-type-var-for-self/) catches `cls: type[_S]` but misses `cls: "type[_S]"` ``` from typing import TypeVar _S = TypeVar("_S", bound="Foo") class Foo: @classmethod def bar(cls: "type[_S]", arg: int) -> _S: ... ``` ### Version ruff 0.11.10