mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
Fix pyinstaller.utils.hooks.collect_entry_point return type (#13111)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user