@@ -435,11 +435,11 @@ def run(
435
435
self ,
436
436
universal_newlines : Optional [bool ] = ...,
437
437
* ,
438
- capture_output : bool = ... ,
439
- check : bool = ... ,
438
+ capture_output : bool = False ,
439
+ check : bool = False ,
440
440
encoding : Optional [str ] = ...,
441
441
errors : Optional [str ] = ...,
442
- input : Optional ["_InputString" ] = ... ,
442
+ input : Optional ["_InputString" ] = None ,
443
443
text : Literal [True ],
444
444
) -> subprocess .CompletedProcess [str ]: ...
445
445
@@ -448,11 +448,11 @@ def run(
448
448
self ,
449
449
universal_newlines : Optional [bool ] = ...,
450
450
* ,
451
- capture_output : bool = ... ,
452
- check : bool = ... ,
451
+ capture_output : bool = False ,
452
+ check : bool = False ,
453
453
encoding : str ,
454
454
errors : Optional [str ] = ...,
455
- input : Optional ["_InputString" ] = ... ,
455
+ input : Optional ["_InputString" ] = None ,
456
456
text : Optional [bool ] = ...,
457
457
) -> subprocess .CompletedProcess [str ]: ...
458
458
@@ -461,11 +461,11 @@ def run(
461
461
self ,
462
462
universal_newlines : Optional [bool ] = ...,
463
463
* ,
464
- capture_output : bool = ... ,
465
- check : bool = ... ,
464
+ capture_output : bool = False ,
465
+ check : bool = False ,
466
466
encoding : Optional [str ] = ...,
467
467
errors : str ,
468
- input : Optional ["_InputString" ] = ... ,
468
+ input : Optional ["_InputString" ] = None ,
469
469
text : Optional [bool ] = ...,
470
470
) -> subprocess .CompletedProcess [str ]: ...
471
471
@@ -475,11 +475,11 @@ def run(
475
475
* ,
476
476
universal_newlines : Literal [True ],
477
477
# where the *real* keyword only args start
478
- capture_output : bool = ... ,
479
- check : bool = ... ,
478
+ capture_output : bool = False ,
479
+ check : bool = False ,
480
480
encoding : Optional [str ] = ...,
481
481
errors : Optional [str ] = ...,
482
- input : Optional ["_InputString" ] = ... ,
482
+ input : Optional ["_InputString" ] = None ,
483
483
text : Optional [bool ] = ...,
484
484
) -> subprocess .CompletedProcess [str ]: ...
485
485
@@ -488,11 +488,11 @@ def run(
488
488
self ,
489
489
universal_newlines : Literal [False , None ] = ...,
490
490
* ,
491
- capture_output : bool = ... ,
492
- check : bool = ... ,
491
+ capture_output : bool = False ,
492
+ check : bool = False ,
493
493
encoding : None = ...,
494
494
errors : None = ...,
495
- input : Optional ["ReadableBuffer" ] = ... ,
495
+ input : Optional ["ReadableBuffer" ] = None ,
496
496
text : Literal [None , False ] = ...,
497
497
) -> subprocess .CompletedProcess [bytes ]: ...
498
498
0 commit comments