Skip to content

Commit 25165ce

Browse files
authored
remove space new line
1 parent 95de0c5 commit 25165ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/loaders/lora_conversion_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2132,7 +2132,7 @@ def _convert_non_diffusers_qwen_lora_to_diffusers(state_dict):
21322132
has_diffusion_model = any(k.startswith("diffusion_model.") for k in state_dict)
21332133
if has_diffusion_model:
21342134
state_dict = {k.removeprefix("diffusion_model."): v for k, v in state_dict.items()}
2135-
2135+
21362136
has_lora_unet = any(k.startswith("lora_unet_") for k in state_dict)
21372137
if has_lora_unet:
21382138
state_dict = {k.removeprefix("lora_unet_"): v for k, v in state_dict.items()}

0 commit comments

Comments
 (0)