11# Referenced in: https://pyinstaller.org/en/stable/hooks.html?highlight=get_hook_config#PyInstaller.utils.hooks.get_hook_config
22# Not to be imported during runtime, but is the type reference for hooks and analysis configuration
33
4- from _typeshed import StrPath
4+ from _typeshed import Incomplete , StrPath
55from collections .abc import Iterable
66from typing import Any
77
@@ -13,17 +13,17 @@ class Analysis(Target):
1313 def __init__ (
1414 self ,
1515 scripts : Iterable [StrPath ],
16- pathex = ...,
17- binaries = ...,
18- datas = ...,
19- hiddenimports = ...,
20- hookspath = ...,
16+ pathex : Incomplete | None = ...,
17+ binaries : Incomplete | None = ...,
18+ datas : Incomplete | None = ...,
19+ hiddenimports : Incomplete | None = ...,
20+ hookspath : Incomplete | None = ...,
2121 hooksconfig : dict [str , dict [str , Any ]] | None = ...,
22- excludes = ...,
23- runtime_hooks = ...,
24- cipher = ...,
22+ excludes : Incomplete | None = ...,
23+ runtime_hooks : Incomplete | None = ...,
24+ cipher : Incomplete | None = ...,
2525 win_no_prefer_redirects : bool = ...,
2626 win_private_assemblies : bool = ...,
2727 noarchive : bool = ...,
28- module_collection_mode = ...,
28+ module_collection_mode : Incomplete | None = ...,
2929 ) -> None : ...
0 commit comments