(
args, # type: Sequence[str]
**kwargs # type: Any
)
| 54 | |
| 55 | |
| 56 | def check_call( |
| 57 | args, # type: Sequence[str] |
| 58 | **kwargs # type: Any |
| 59 | ): |
| 60 | # type: (...) -> None |
| 61 | subprocess.check_call(args=_safe_args(args), **kwargs) |
| 62 | |
| 63 | |
| 64 | def check_output( |
nothing calls this directly
no test coverage detected