Skip to content

Commit d4fb74d

Browse files
committed
Fix cannot import name 'applyKolorsUnet'#655
1 parent 3175716 commit d4fb74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/libs/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ def load_kolors_unet(self, unet_name):
489489
log_node_info("Load Kolors UNet", f"{unet_name} cached")
490490
return self.loaded_objects["unet"][unet_name][0]
491491
else:
492-
from ..modules.kolors import applyKolorsUnet
492+
from ..modules.kolors.loader import applyKolorsUnet
493493
with applyKolorsUnet():
494494
unet_path = folder_paths.get_full_path("unet", unet_name)
495495
sd = comfy.utils.load_torch_file(unet_path)

0 commit comments

Comments
 (0)