Skip to content

Commit ba475a0

Browse files
1 parent 830b57f commit ba475a0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

stdlib/multiprocessing/process.pyi

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import sys
2-
from typing import Any, Callable, Mapping
2+
from collections.abc import Callable, Iterable, Mapping
3+
from typing import Any
34

45
if sys.version_info >= (3, 8):
56
__all__ = ["BaseProcess", "current_process", "active_children", "parent_process"]
@@ -16,7 +17,7 @@ class BaseProcess:
1617
group: None = ...,
1718
target: Callable[..., Any] | None = ...,
1819
name: str | None = ...,
19-
args: tuple[Any, ...] = ...,
20+
args: Iterable[Any] = ...,
2021
kwargs: Mapping[str, Any] = ...,
2122
*,
2223
daemon: bool | None = ...,

0 commit comments

Comments
 (0)