rodrigomasini commited on
Commit
dea2f59
1 Parent(s): a5ff11f

Update src/display/utils.py

Browse files
Files changed (1) hide show
  1. src/display/utils.py +2 -4
src/display/utils.py CHANGED
@@ -130,10 +130,8 @@ class Precision(Enum):
130
 
131
 
132
  # Column selection
133
- COLS = [c.name for c in fields(AutoEvalColumn) if not c.hidden]
134
- TYPES = [c.type for c in fields(AutoEvalColumn) if not c.hidden]
135
- COLS_LITE = [c.name for c in fields(AutoEvalColumn) if c.displayed_by_default and not c.hidden]
136
- TYPES_LITE = [c.type for c in fields(AutoEvalColumn) if c.displayed_by_default and not c.hidden]
137
 
138
  EVAL_COLS = [c.name for c in fields(EvalQueueColumn)]
139
  EVAL_TYPES = [c.type for c in fields(EvalQueueColumn)]
 
130
 
131
 
132
  # Column selection
133
+ COLS = [c.name for c in fields(AutoEvalColumn)]
134
+ TYPES = [c.type for c in fields(AutoEvalColumn)]
 
 
135
 
136
  EVAL_COLS = [c.name for c in fields(EvalQueueColumn)]
137
  EVAL_TYPES = [c.type for c in fields(EvalQueueColumn)]