Skip to content

Commit 05468cf

Browse files
committed
docs(run): Fix param highlighting
1 parent 31e83e1 commit 05468cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libvcs/_internal/run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,14 @@ def run(
202202
"""Run 'args' in a shell and return the combined contents of stdout and
203203
stderr (Blocking). Throws an exception if the command exits non-zero.
204204
205-
Keyword arguments are passthrough to {class}`subprocess.Popen`.
205+
Keyword arguments are passthrough to :class:`subprocess.Popen`.
206206
207207
Parameters
208208
----------
209209
args : list or str, or single str, if shell=True
210210
the command to run
211211
212-
shell : boolean
212+
shell : bool
213213
boolean indicating whether we are using advanced shell
214214
features. Use only when absolutely necessary, since this allows a lot
215215
more freedom which could be exploited by malicious code. See the
@@ -218,7 +218,7 @@ def run(
218218
cwd : str
219219
dir command is run from. Defaults to ``path``.
220220
221-
log_in_real_time : boolean
221+
log_in_real_time : bool
222222
boolean indicating whether to read stdout from the
223223
subprocess in real time instead of when the process finishes.
224224

0 commit comments

Comments
 (0)