diff options
-rw-r--r-- | plot.py | 3 | ||||
-rw-r--r-- | test.py | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -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() @@ -38,7 +38,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() |