We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f62d36 commit ea75f1dCopy full SHA for ea75f1d
src/libvcs/_internal/subprocess.py
@@ -42,7 +42,7 @@
42
import dataclasses
43
import subprocess
44
import sys
45
-from collections.abc import Mapping, Sequence
+from collections.abc import Collection, Mapping, Sequence
46
from typing import (
47
IO,
48
TYPE_CHECKING,
@@ -197,7 +197,7 @@ class SubprocessCommand(SkipDefaultFieldsReprMixin):
197
# POSIX-only
198
restore_signals: bool = True
199
start_new_session: bool = False
200
- pass_fds: Any = ()
+ pass_fds: Collection[int] = ()
201
umask: int = -1
202
if sys.version_info >= (3, 10):
203
pipesize: int = -1
0 commit comments