Skip to content

Commit 8c4ba25

Browse files
committed
typo
1 parent 002471d commit 8c4ba25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def full_lora_path_for(lora: str):
6060
if (lora.split('.')[-1]) not in folder_paths.supported_pt_extensions:
6161
lora = lora + ".safetensors"
6262

63-
matching_lora = next((x for x in __list_loras() if x.endwith(lora)), None)
63+
matching_lora = next((x for x in __list_loras() if x.endswith(lora)), None)
6464
if matching_lora == None:
6565
print(f'ComfyUI-Image-Saver: could not find full path to lora "{lora}"')
6666
return None

0 commit comments

Comments
 (0)