diff --git a/GEODE/Visualisation/Legend.py b/GEODE/Visualisation/Legend.py index 7aa292ea0b7de98b8be29921b238c107f37f9ec8..9403bc26690b998ce75213ad872979d8ca3be2e0 100644 --- a/GEODE/Visualisation/Legend.py +++ b/GEODE/Visualisation/Legend.py @@ -20,4 +20,4 @@ def trim(labels, maxWidth=10): else: shards = [label.split(' ') for label in labels] prefixes = [*map(take(maxWidth), shards)] - return [' '.join(prefix) for prefix in sorted(prefixes)] + return [' '.join(prefix) for prefix in prefixes]