1
1
# Referenced in: https://pyinstaller.org/en/stable/hooks.html?highlight=get_hook_config#PyInstaller.utils.hooks.get_hook_config
2
2
# Not to be imported during runtime, but is the type reference for hooks and analysis configuration
3
3
4
- from _typeshed import StrPath
4
+ from _typeshed import Incomplete , StrPath
5
5
from collections .abc import Iterable
6
6
from typing import Any
7
7
@@ -13,17 +13,17 @@ class Analysis(Target):
13
13
def __init__ (
14
14
self ,
15
15
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 = ...,
21
21
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 = ...,
25
25
win_no_prefer_redirects : bool = ...,
26
26
win_private_assemblies : bool = ...,
27
27
noarchive : bool = ...,
28
- module_collection_mode = ...,
28
+ module_collection_mode : Incomplete | None = ...,
29
29
) -> None : ...
0 commit comments