Skip to content

Commit 002810f

Browse files
committed
fix copied from statement
1 parent a3befb5 commit 002810f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/pipelines/qwenimage/pipeline_qwenimage_inpaint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def _prepare_latent_image_ids(batch_size, height, width, device, dtype):
407407
return latent_image_ids.to(device=device, dtype=dtype)
408408

409409
@staticmethod
410-
# Copied from diffusers.pipelines.qwenimage.pipeline_qwenimage._pack_latents
410+
# Copied from diffusers.pipelines.qwenimage.pipeline_qwenimage.QwenImagePipeline._pack_latents
411411
def _pack_latents(latents, batch_size, num_channels_latents, height, width):
412412
latents = latents.view(batch_size, num_channels_latents, height // 2, 2, width // 2, 2)
413413
latents = latents.permute(0, 2, 4, 1, 3, 5)

0 commit comments

Comments
 (0)