From cadaaadfcb74d6b2c91dd16018144dbc0f3c215b Mon Sep 17 00:00:00 2001 From: Avasam Date: Fri, 28 Feb 2025 07:23:11 -0500 Subject: [PATCH] Fix `pyinstaller.utils.hooks.collect_entry_point` return type (#13111) --- stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi b/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi index 6d331d914..17f0ddf5c 100644 --- a/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi +++ b/stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi @@ -61,7 +61,7 @@ def collect_all( include_datas: Iterable[str] | None = None, on_error: Literal["ignore", "warn once", "warn", "raise"] = "warn once", ) -> tuple[list[tuple[str, str]], list[tuple[str, str]], list[str]]: ... -def collect_entry_point(name: str) -> tuple[tuple[str, str], list[str]]: ... +def collect_entry_point(name: str) -> tuple[list[tuple[str, str]], list[str]]: ... def get_hook_config(hook_api: PostGraphAPI, module_name: str, key: str) -> None: ... def include_or_exclude_file( filename: StrOrBytesPath,