Skip to content

Commit cadaaad

Browse files
authored
Fix pyinstaller.utils.hooks.collect_entry_point return type (#13111)
1 parent f1b121c commit cadaaad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/pyinstaller/PyInstaller/utils/hooks/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def collect_all(
6161
include_datas: Iterable[str] | None = None,
6262
on_error: Literal["ignore", "warn once", "warn", "raise"] = "warn once",
6363
) -> tuple[list[tuple[str, str]], list[tuple[str, str]], list[str]]: ...
64-
def collect_entry_point(name: str) -> tuple[tuple[str, str], list[str]]: ...
64+
def collect_entry_point(name: str) -> tuple[list[tuple[str, str]], list[str]]: ...
6565
def get_hook_config(hook_api: PostGraphAPI, module_name: str, key: str) -> None: ...
6666
def include_or_exclude_file(
6767
filename: StrOrBytesPath,

0 commit comments

Comments
 (0)