Skip to content

Commit 53070df

Browse files
committed
[portage] Add defaults to doebuild()
1 parent 7b67e8f commit 53070df

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

stubs/portage/portage/package/ebuild/doebuild.pyi

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ def doebuild(
3838
"unmerge",
3939
"unpack",
4040
],
41-
settings: config | None = ...,
41+
settings: config | None = None,
4242
debug: Literal[0, 1] = 0,
4343
listonly: Literal[0, 1] = 0,
4444
fetchonly: Literal[0, 1] = 0,
4545
cleanup: Literal[0, 1] = 0,
4646
use_cache: Literal[0, 1] = 1,
4747
fetchall: Literal[0, 1] = 0,
48-
tree: Literal["vartree", "porttree", "bintree"] = ...,
49-
mydbapi: portdbapi | None = ...,
50-
vartree=...,
51-
prev_mtimes: dict[str, Incomplete] | None = ...,
52-
fd_pipes: dict[str, str] | None = ...,
53-
returnproc: int | bool = ...,
48+
tree: Literal["vartree", "porttree", "bintree"] | None = None,
49+
mydbapi: portdbapi | None = None,
50+
vartree=None,
51+
prev_mtimes: dict[str, Incomplete] | None = None,
52+
fd_pipes: dict[str, str] | None = None,
53+
returnproc: int | bool = False,
5454
) -> Literal[0, 1] | bool | list[int]: # Missing portage.process.MultiprocessingProcess
5555
...
5656

0 commit comments

Comments
 (0)