(cmd: str, **kw)
| 40 | |
| 41 | |
| 42 | def _run_shell(cmd: str, **kw) -> subprocess.CompletedProcess[str]: |
| 43 | return subprocess.run(shlex.split(cmd), **kw) # nosec |
| 44 | |
| 45 | |
| 46 | def _capture_output(cmd: str) -> str: |
no test coverage detected
searching dependent graphs…