From 389c60567245f1c637d00c10d7dc5587214aa3ae Mon Sep 17 00:00:00 2001 From: Saul Pwanson Date: Sun, 6 Oct 2024 00:02:40 -0700 Subject: [PATCH] [columns-] fix test; hide expr attribute by default --- visidata/metasheets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visidata/metasheets.py b/visidata/metasheets.py index 0d34a5fa0..e41c8ced5 100644 --- a/visidata/metasheets.py +++ b/visidata/metasheets.py @@ -54,7 +54,7 @@ def setValue(self, srcCol, val): ColumnAttr('formatter', disp_expert=1, help='use a custom format function (**{col.help_formatters}**)'), ColumnAttr('displayer', disp_expert=1, help='use a custom display function (**{col.help_displayers}**)'), ValueColumn('value', help='change the value of this cell on the source sheet'), - ColumnAttr('expr', help='change the main column parameter'), + ColumnAttr('expr', disp_expert=1, help='change the main column parameter'), ColumnAttr('ncalcs', type=int, width=0, cache=False), ColumnAttr('maxtime', type=float, width=0, cache=False), ColumnAttr('totaltime', type=float, width=0, cache=False),