Commit e9411143 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Use the rounded value for importance for grouping purposes

parent b44d52be
...@@ -55,7 +55,7 @@ FIELDS = { ...@@ -55,7 +55,7 @@ FIELDS = {
), ),
'importance-avg': Field( 'importance-avg': Field(
sort= average_importance, sort= average_importance,
group=average_importance, group=lambda t: round(average_importance(t), 1),
label='Importance (avg)', label='Importance (avg)',
), ),
'length': Field( 'length': Field(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment