From e1b0abf44665dea9a04e21903c6bcf4d8c93feb4 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Fri, 6 Feb 2026 17:15:50 -0600 Subject: [PATCH] scripts: csv.py: Renamed -L/--list-computed -> -L/--list-eval I forgot the name and think this is slightly easier to remember, "eval" is quite a bit more common in programmer lingo. --- scripts/csv.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/csv.py b/scripts/csv.py index 392c77a6..9cf8d33c 100755 --- a/scripts/csv.py +++ b/scripts/csv.py @@ -2742,7 +2742,7 @@ def list_fields(csv_paths, **args): w[1], t, x)) -def list_computed(fields_, results, Result, **args): +def list_eval(fields_, results, Result, **args): # find best type for fields, note this matches compile behavior types_ = {} for k in fields_: @@ -3071,9 +3071,9 @@ def main(csv_paths, *, hot=hot, notes=notes) - # list computed? - if args.get('list_computed'): - return list_computed(fields_, results, Result, **args) + # list eval? + if args.get('list_eval'): + return list_eval(fields_, results, Result, **args) # homogenize results = homogenize(Result, results, @@ -3174,7 +3174,7 @@ if __name__ == "__main__": action='store_true', help="List fields and inferred types before processing.") parser.add_argument( - '-L', '--list-computed', + '-L', '--list-eval', action='store_true', help="List computed fields and expression dependencies.") parser.add_argument(