Skip to content

Commit 1b1c248

Browse files
committed
1 parent ae5196e commit 1b1c248

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/libvcs/_internal/subprocess.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,11 @@ def run(
435435
self,
436436
universal_newlines: Optional[bool] = ...,
437437
*,
438-
capture_output: bool = ...,
439-
check: bool = ...,
438+
capture_output: bool = False,
439+
check: bool = False,
440440
encoding: Optional[str] = ...,
441441
errors: Optional[str] = ...,
442-
input: Optional["_InputString"] = ...,
442+
input: Optional["_InputString"] = None,
443443
text: Literal[True],
444444
) -> subprocess.CompletedProcess[str]: ...
445445

@@ -448,11 +448,11 @@ def run(
448448
self,
449449
universal_newlines: Optional[bool] = ...,
450450
*,
451-
capture_output: bool = ...,
452-
check: bool = ...,
451+
capture_output: bool = False,
452+
check: bool = False,
453453
encoding: str,
454454
errors: Optional[str] = ...,
455-
input: Optional["_InputString"] = ...,
455+
input: Optional["_InputString"] = None,
456456
text: Optional[bool] = ...,
457457
) -> subprocess.CompletedProcess[str]: ...
458458

@@ -461,11 +461,11 @@ def run(
461461
self,
462462
universal_newlines: Optional[bool] = ...,
463463
*,
464-
capture_output: bool = ...,
465-
check: bool = ...,
464+
capture_output: bool = False,
465+
check: bool = False,
466466
encoding: Optional[str] = ...,
467467
errors: str,
468-
input: Optional["_InputString"] = ...,
468+
input: Optional["_InputString"] = None,
469469
text: Optional[bool] = ...,
470470
) -> subprocess.CompletedProcess[str]: ...
471471

@@ -475,11 +475,11 @@ def run(
475475
*,
476476
universal_newlines: Literal[True],
477477
# where the *real* keyword only args start
478-
capture_output: bool = ...,
479-
check: bool = ...,
478+
capture_output: bool = False,
479+
check: bool = False,
480480
encoding: Optional[str] = ...,
481481
errors: Optional[str] = ...,
482-
input: Optional["_InputString"] = ...,
482+
input: Optional["_InputString"] = None,
483483
text: Optional[bool] = ...,
484484
) -> subprocess.CompletedProcess[str]: ...
485485

@@ -488,11 +488,11 @@ def run(
488488
self,
489489
universal_newlines: Literal[False, None] = ...,
490490
*,
491-
capture_output: bool = ...,
492-
check: bool = ...,
491+
capture_output: bool = False,
492+
check: bool = False,
493493
encoding: None = ...,
494494
errors: None = ...,
495-
input: Optional["ReadableBuffer"] = ...,
495+
input: Optional["ReadableBuffer"] = None,
496496
text: Literal[None, False] = ...,
497497
) -> subprocess.CompletedProcess[bytes]: ...
498498

0 commit comments

Comments
 (0)