(
args, # type: Sequence[str]
**kwargs # type: Any
)
| 46 | |
| 47 | |
| 48 | def call( |
| 49 | args, # type: Sequence[str] |
| 50 | **kwargs # type: Any |
| 51 | ): |
| 52 | # type: (...) -> int |
| 53 | return subprocess.call(args=_safe_args(args), **kwargs) |
| 54 | |
| 55 | |
| 56 | def check_call( |
nothing calls this directly
no test coverage detected