File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ def Popen(
258258 args : _CMD | None = ...,
259259 universal_newlines : t .Literal [False ] = ...,
260260 * ,
261- text : t .Literal [None , False ] = ...,
261+ text : t .Literal [False ] | None = ...,
262262 encoding : None = ...,
263263 errors : None = ...,
264264 ) -> subprocess .Popen [bytes ]: ...
@@ -370,7 +370,7 @@ def check_output(
370370 input : str | bytes | None = ...,
371371 encoding : None = ...,
372372 errors : None = ...,
373- text : t .Literal [None , False ] = ...,
373+ text : t .Literal [False ] | None = ...,
374374 ** kwargs : t .Any ,
375375 ) -> bytes : ...
376376
@@ -484,7 +484,7 @@ def run(
484484 encoding : None = ...,
485485 errors : None = ...,
486486 input : bytes | None = ...,
487- text : t .Literal [None , False ] = ...,
487+ text : t .Literal [False ] | None = ...,
488488 ) -> subprocess .CompletedProcess [bytes ]: ...
489489
490490 def run (
You can’t perform that action at this time.
0 commit comments