From a774e52fae1e7d5f84024cab63299b97189837c7 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sun, 12 Dec 2021 15:09:34 +0000 Subject: [PATCH] Correct `builtins.help` (#6571) --- stdlib/builtins.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index e0a3edf60..108dbe065 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -1070,7 +1070,7 @@ def getattr(__o: object, __name: str, __default: _T) -> Any | _T: ... def globals() -> dict[str, Any]: ... def hasattr(__obj: object, __name: str) -> bool: ... def hash(__obj: object) -> int: ... -def help(*args: Any, **kwds: Any) -> None: ... +def help(request: object = ...) -> None: ... def hex(__number: int | SupportsIndex) -> str: ... def id(__obj: object) -> int: ... def input(__prompt: object = ...) -> str: ...