From a5c66e0962d28857b4c1d3b6ab47aa20c8be158a Mon Sep 17 00:00:00 2001 From: Scott Behrens Date: Wed, 31 Jan 2024 10:53:30 -0800 Subject: [PATCH] sorted pattern names alphabetical order --- infrastructure/client/general_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/client/general_client.py b/infrastructure/client/general_client.py index cd1fe30..937de8a 100644 --- a/infrastructure/client/general_client.py +++ b/infrastructure/client/general_client.py @@ -12,7 +12,7 @@ def list_patterns(): # Gets the location of this script and ensures we resolve the right pattern path pattern_directory = f"{Path(__file__).resolve().parent}/../../patterns" try: - return os.listdir(pattern_directory) + return sorted(os.listdir(pattern_directory)) except FileNotFoundError: print("Pattern directory not found.") return []