From d79f697ab604379ac59974f2559960905d93f59a Mon Sep 17 00:00:00 2001 From: Alyssa Coghlan Date: Mon, 20 Jan 2025 13:04:53 +1000 Subject: [PATCH] Remove no longer used TypeVar --- stubs/decorator/decorator.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stubs/decorator/decorator.pyi b/stubs/decorator/decorator.pyi index 7306b88f10c4..7ced22b9cc91 100644 --- a/stubs/decorator/decorator.pyi +++ b/stubs/decorator/decorator.pyi @@ -7,7 +7,6 @@ from re import Pattern from typing import Any, Literal, TypeVar from typing_extensions import ParamSpec -_C = TypeVar("_C", bound=Callable[..., Any]) _Func = TypeVar("_Func", bound=Callable[..., Any]) _T = TypeVar("_T") _P = ParamSpec("_P")