scripts: Renamed -c/--compare -> -C/--compare

The lowercase -c/--compare felt clunky. I think because we tend towards
using uppercase for flags that operate on csv rows, such as -D/--define,
-L/--add-label (plot.py), etc.
This commit is contained in:
Christopher Haster
2026-02-06 17:22:01 -06:00
parent e1b0abf446
commit b99d245cd8
10 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1188,7 +1188,7 @@ if __name__ == "__main__":
action='store_true',
help="Only show percentage change, not a full diff.")
parser.add_argument(
'-c', '--compare',
'-C', '--compare',
type=lambda x: tuple(v.strip() for v in x.split(',')),
help="Compare results to the row matching this by pattern.")
parser.add_argument(