diff --git a/crates/ty_vendored/ty_extensions/ty_extensions.pyi b/crates/ty_vendored/ty_extensions/ty_extensions.pyi index 41da401099..a9c733fba2 100644 --- a/crates/ty_vendored/ty_extensions/ty_extensions.pyi +++ b/crates/ty_vendored/ty_extensions/ty_extensions.pyi @@ -93,7 +93,7 @@ class NamedTupleLike(Protocol): _field_defaults: ClassVar[dict[str, Any]] _fields: ClassVar[tuple[str, ...]] @classmethod - def _make(self: Self, iterable: Iterable[Any]) -> Self: ... + def _make(cls: type[Self], iterable: Iterable[Any]) -> Self: ... def _asdict(self, /) -> dict[str, Any]: ... def _replace(self: Self, /, **kwargs) -> Self: ... if sys.version_info >= (3, 13):