aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plot.py
diff options
context:
space:
mode:
Diffstat (limited to 'plot.py')
-rw-r--r--plot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/plot.py b/plot.py
index 45140f6..2681628 100644
--- a/plot.py
+++ b/plot.py
@@ -51,7 +51,8 @@ def _format_algorithm(codename):
def _format_available_algorithms():
descr = 'available algorithms (in the CODENAME: DISPLAY_NAME format):\n'
- return descr + '\n'.join(map(_format_algorithm, registry.get_codenames()))
+ return descr + '\n'.join(map(
+ _format_algorithm, sorted(registry.get_codenames())))
def _format_description():
return _format_available_algorithms()