(cmd: ScrapyCommand, args: list[str], opts: argparse.Namespace)
| 216 | |
| 217 | |
| 218 | def _run_command(cmd: ScrapyCommand, args: list[str], opts: argparse.Namespace) -> None: |
| 219 | if opts.profile: |
| 220 | _run_command_profiled(cmd, args, opts) |
| 221 | else: |
| 222 | cmd.run(args, opts) |
| 223 | |
| 224 | |
| 225 | def _run_command_profiled( |
nothing calls this directly
no test coverage detected