We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de67e9d commit 55061beCopy full SHA for 55061be
clodius/cli/aggregate.py
@@ -369,7 +369,7 @@ def line_to_dict(line):
369
370
tile_counts = col.defaultdict(lambda: col.defaultdict(lambda: col.defaultdict(int)))
371
# Sort from high to low importance
372
- entries = sorted(entries, key=lambda x: -x["importance"])
+ entries.sort(key=lambda x: -x["importance"])
373
374
interval_inserts = []
375
position_index_inserts = []
0 commit comments