Skip to content

Commit dc13d3c

Browse files
revert unrelated changes
1 parent bd7185f commit dc13d3c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

codeflash/cli_cmds/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@ def _build_parser() -> ArgumentParser:
376376
subparsers.add_parser("vscode-install", help="Install the Codeflash VSCode extension")
377377
subparsers.add_parser("init-actions", help="Initialize GitHub Actions workflow")
378378

379+
trace_optimize = subparsers.add_parser("optimize", help="Trace and optimize your project.", add_help=False)
379380
auth_parser = subparsers.add_parser("auth", help="Authentication commands")
380381
auth_subparsers = auth_parser.add_subparsers(dest="auth_command", help="Auth sub-commands")
381382
auth_subparsers.add_parser("login", help="Log in to Codeflash via OAuth")
@@ -391,8 +392,6 @@ def _build_parser() -> ArgumentParser:
391392
compare_parser.add_argument("--timeout", type=int, default=600, help="Benchmark timeout in seconds (default: 600)")
392393
compare_parser.add_argument("--config-file", type=str, dest="config_file", help="Path to pyproject.toml")
393394

394-
trace_optimize = subparsers.add_parser("optimize", help="Trace and optimize your project.")
395-
396395
trace_optimize.add_argument(
397396
"--max-function-count",
398397
type=int,

0 commit comments

Comments
 (0)