(
prefix: Prefix,
entry: str,
args: Sequence[str],
file_args: Sequence[str],
*,
is_local: bool,
require_serial: bool,
color: bool,
)
| 260 | |
| 261 | |
| 262 | def run_hook( |
| 263 | prefix: Prefix, |
| 264 | entry: str, |
| 265 | args: Sequence[str], |
| 266 | file_args: Sequence[str], |
| 267 | *, |
| 268 | is_local: bool, |
| 269 | require_serial: bool, |
| 270 | color: bool, |
| 271 | ) -> tuple[int, bytes]: |
| 272 | cmd = _cmd_from_hook(prefix, entry, args, is_local=is_local) |
| 273 | return lang_base.run_xargs( |
| 274 | cmd, |
| 275 | file_args, |
| 276 | require_serial=require_serial, |
| 277 | color=color, |
| 278 | ) |
nothing calls this directly
no test coverage detected