()
| 7 | |
| 8 | |
| 9 | def build_parser() -> argparse.ArgumentParser: |
| 10 | p = argparse.ArgumentParser(description="Enhanced Benchmark Tool") |
| 11 | p.add_argument("--input", "-i", required=True, help="Input CSV path") |
| 12 | p.add_argument("--json", action="store_true", help="Output as JSON") |
| 13 | return p |
| 14 | |
| 15 | |
| 16 | def main(argv: list[str] | None = None) -> int: |