Skip to content

Commit 8859e85

Browse files
thatfloflosamuelhwilliams
authored andcommitted
Added type stub for __main__.py
1 parent ff3fb69 commit 8859e85

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

eel/__main__.pyi

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
from typing import List
2+
import pkg_resources as pkg
3+
import PyInstaller.__main__ as pyi
4+
import os
5+
from argparse import ArgumentParser, Namespace
6+
7+
parser: ArgumentParser = ...
8+
args: Namespace = ...
9+
unknown_args: List[str] = ...
10+
main_script: str = ...
11+
web_folder: str = ...
12+
13+
eel_js_file: str = ...
14+
js_file_arg: str = ...
15+
web_folder_arg: str = ...
16+
17+
needed_args: List[str] = ...
18+
full_args: List[str] = ...

0 commit comments

Comments
 (0)