From 7619a8fb4611043a80c7a6df460bfa9feb640ff4 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Thu, 6 May 2021 17:07:43 -0700 Subject: [PATCH] typing_extensions: fix positional-only arg (#5359) Co-authored-by: hauntsaninja <> --- stdlib/typing_extensions.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/typing_extensions.pyi b/stdlib/typing_extensions.pyi index 90bb75765..7a5f3fe35 100644 --- a/stdlib/typing_extensions.pyi +++ b/stdlib/typing_extensions.pyi @@ -43,7 +43,7 @@ def final(f: _F) -> _F: ... Literal: _SpecialForm = ... -def IntVar(__name: str) -> Any: ... # returns a new TypeVar +def IntVar(name: str) -> Any: ... # returns a new TypeVar # Internal mypy fallback type for all typed dicts (does not exist at runtime) class _TypedDict(Mapping[str, object], metaclass=abc.ABCMeta):