(
args: str | list[str] | list[str | None] | list[str | Path | None],
run: Literal[False] = False,
show_logs: bool = False,
**kwargs,
)
| 182 | |
| 183 | @overload |
| 184 | def new_process( |
| 185 | args: str | list[str] | list[str | None] | list[str | Path | None], |
| 186 | run: Literal[False] = False, |
| 187 | show_logs: bool = False, |
| 188 | **kwargs, |
| 189 | ) -> subprocess.Popen[str]: ... |
| 190 | |
| 191 | |
| 192 | @overload |
no test coverage detected