Fix pyinstaller.utils.hooks.collect_entry_point return type (#13111)

This commit is contained in:
Avasam
2025-02-28 07:23:11 -05:00
committed by GitHub
parent f1b121cf29
commit cadaaadfcb
@@ -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,