File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ def Popen(
258
258
args : _CMD | None = ...,
259
259
universal_newlines : t .Literal [False ] = ...,
260
260
* ,
261
- text : t .Literal [None , False ] = ...,
261
+ text : t .Literal [False ] | None = ...,
262
262
encoding : None = ...,
263
263
errors : None = ...,
264
264
) -> subprocess .Popen [bytes ]: ...
@@ -370,7 +370,7 @@ def check_output(
370
370
input : str | bytes | None = ...,
371
371
encoding : None = ...,
372
372
errors : None = ...,
373
- text : t .Literal [None , False ] = ...,
373
+ text : t .Literal [False ] | None = ...,
374
374
** kwargs : t .Any ,
375
375
) -> bytes : ...
376
376
@@ -484,7 +484,7 @@ def run(
484
484
encoding : None = ...,
485
485
errors : None = ...,
486
486
input : bytes | None = ...,
487
- text : t .Literal [None , False ] = ...,
487
+ text : t .Literal [False ] | None = ...,
488
488
) -> subprocess .CompletedProcess [bytes ]: ...
489
489
490
490
def run (
You can’t perform that action at this time.
0 commit comments