rodrigomasini
commited on
Update src/display/utils.py
Browse files- src/display/utils.py +2 -4
src/display/utils.py
CHANGED
@@ -113,10 +113,8 @@ class Precision(Enum):
|
|
113 |
return Precision.Unknown
|
114 |
|
115 |
# Column selection
|
116 |
-
COLS = [c.name for c in fields(AutoEvalColumn)
|
117 |
-
TYPES = [c.type for c in fields(AutoEvalColumn)
|
118 |
-
COLS_LITE = [c.name for c in fields(AutoEvalColumn) if c.displayed_by_default and not c.hidden]
|
119 |
-
TYPES_LITE = [c.type for c in fields(AutoEvalColumn) if c.displayed_by_default and not c.hidden]
|
120 |
|
121 |
EVAL_COLS = [c.name for c in fields(EvalQueueColumn)]
|
122 |
EVAL_TYPES = [c.type for c in fields(EvalQueueColumn)]
|
|
|
113 |
return Precision.Unknown
|
114 |
|
115 |
# Column selection
|
116 |
+
COLS = [c.name for c in fields(AutoEvalColumn)]
|
117 |
+
TYPES = [c.type for c in fields(AutoEvalColumn)]
|
|
|
|
|
118 |
|
119 |
EVAL_COLS = [c.name for c in fields(EvalQueueColumn)]
|
120 |
EVAL_TYPES = [c.type for c in fields(EvalQueueColumn)]
|