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 @@ -202,14 +202,14 @@ def run(
202
202
"""Run 'args' in a shell and return the combined contents of stdout and
203
203
stderr (Blocking). Throws an exception if the command exits non-zero.
204
204
205
- Keyword arguments are passthrough to { class} `subprocess.Popen`.
205
+ Keyword arguments are passthrough to : class: `subprocess.Popen`.
206
206
207
207
Parameters
208
208
----------
209
209
args : list or str, or single str, if shell=True
210
210
the command to run
211
211
212
- shell : boolean
212
+ shell : bool
213
213
boolean indicating whether we are using advanced shell
214
214
features. Use only when absolutely necessary, since this allows a lot
215
215
more freedom which could be exploited by malicious code. See the
@@ -218,7 +218,7 @@ def run(
218
218
cwd : str
219
219
dir command is run from. Defaults to ``path``.
220
220
221
- log_in_real_time : boolean
221
+ log_in_real_time : bool
222
222
boolean indicating whether to read stdout from the
223
223
subprocess in real time instead of when the process finishes.
224
224
You can’t perform that action at this time.
0 commit comments