fix: unpack folder_names_and_paths error (#128)

This commit is contained in:
Hayden
2025-02-10 10:59:36 +08:00
committed by GitHub
parent 17ab373b9c
commit c7898c47f1
2 changed files with 2 additions and 2 deletions

View File

@@ -386,7 +386,7 @@ class Information:
model_base_paths = utils.resolve_model_base_paths()
for model_type in model_base_paths:
folders, extensions = folder_paths.folder_names_and_paths[model_type]
folders, *others = folder_paths.folder_names_and_paths[model_type]
for path_index, base_path in enumerate(folders):
files = utils.recursive_search_files(base_path, request)