1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Switch to sorted set for path.

This commit is contained in:
comfyanonymous
2023-03-17 19:02:37 -04:00
parent 2e73367f45
commit 80af43dba6

View File

@@ -56,10 +56,10 @@ def get_full_path(folder_name, filename):
def get_filename_list(folder_name):
global folder_names_and_paths
output_list = []
output_list = set()
folders = folder_names_and_paths[folder_name]
for x in folders[0]:
output_list += filter_files_extensions(recursive_search(x), folders[1])
return output_list
output_list.update(filter_files_extensions(recursive_search(x), folders[1]))
return sorted(list(output_list))