8000 !squash more · vcs-python/libvcs@e2e3e5c · GitHub
[go: up one dir, main page]

Skip to content

Commit e2e3e5c

Browse files
committed
!squash more
1 parent c63f91c commit e2e3e5c

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

libvcs/utils/subprocess.py

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,33 @@ def __call__(self, wrapped: Callable[..., Any]) -> F:
1717
class SubprocessCommand(subprocess.Popen):
1818
"""Dataclass of a command to execute"""
1919

20-
def __init__(self, *args, **kwargs):
20+
def __init__(
21+
self,
22+
bufsize=-1,
23+
executable=None,
24+
stdin=None,
25+
stdout=None,
26+
stderr=None,
27+
preexec_fn=None,
28+
close_fds=True,
29+
shell=False,
30+
cwd=None,
31+
env=None,
32+
universal_newlines=None,
33+
startupinfo=None,
34+
creationflags=0,
35+
restore_signals=True,
36+
start_new_session=False,
37+
pass_fds=(),
38 8000 +
*,
39+
user=None,
40+
group=None,
41+
extra_groups=None,
42+
encoding=None,
43+
errors=None,
44+
text=None,
45+
umask=-1,
46+
pipesize=-1,
47+
**kwargs
48+
):
2149
return
22-
23-
24-
myprocess = SubprocessCommand()

0 commit comments

Comments
 (0)
0