From f5a512ba656ab109356f6ab53aaf039423c1d189 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 25 Jun 2025 14:04:48 -0700 Subject: [PATCH] refactor: Remove -n short flag from benchmark --new option --- benchmark/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index bf09bafef..cc694a9f7 100755 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -184,7 +184,7 @@ def main( False, "--clean", "-c", help="Discard the existing testdir and make a clean copy" ), cont: bool = typer.Option(False, "--cont", help="Continue the (single) matching testdir"), - make_new: bool = typer.Option(False, "--new", "-n", help="Make a new dated testdir"), + make_new: bool = typer.Option(False, "--new", help="Make a new dated testdir"), no_unit_tests: bool = typer.Option(False, "--no-unit-tests", help="Do not run unit tests"), no_aider: bool = typer.Option(False, "--no-aider", help="Do not run aider"), verbose: bool = typer.Option(False, "--verbose", "-v", help="Verbose output"),