Browse Source

sorted pattern names alphabetical order

pull/15/head
Scott Behrens 1 year ago
parent
commit
a5c66e0962
  1. 2
      infrastructure/client/general_client.py

2
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 # Gets the location of this script and ensures we resolve the right pattern path
pattern_directory = f"{Path(__file__).resolve().parent}/../../patterns" pattern_directory = f"{Path(__file__).resolve().parent}/../../patterns"
try: try:
return os.listdir(pattern_directory) return sorted(os.listdir(pattern_directory))
except FileNotFoundError: except FileNotFoundError:
print("Pattern directory not found.") print("Pattern directory not found.")
return [] return []

Loading…
Cancel
Save