We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 002471d commit 8c4ba25Copy full SHA for 8c4ba25
utils.py
@@ -60,7 +60,7 @@ def full_lora_path_for(lora: str):
60
if (lora.split('.')[-1]) not in folder_paths.supported_pt_extensions:
61
lora = lora + ".safetensors"
62
63
- matching_lora = next((x for x in __list_loras() if x.endwith(lora)), None)
+ matching_lora = next((x for x in __list_loras() if x.endswith(lora)), None)
64
if matching_lora == None:
65
print(f'ComfyUI-Image-Saver: could not find full path to lora "{lora}"')
66
return None
0 commit comments