Skip to content

Commit ea76880

Browse files
authored
fix(hunyuan-video): typo in height and width input check (#10684)
1 parent 33f9361 commit ea76880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/pipelines/hunyuan_video/pipeline_hunyuan_video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def check_inputs(
348348
prompt_template=None,
349349
):
350350
if height % 16 != 0 or width % 16 != 0:
351-
raise ValueError(f"`height` and `width` have to be divisible by 8 but are {height} and {width}.")
351+
raise ValueError(f"`height` and `width` have to be divisible by 16 but are {height} and {width}.")
352352

353353
if callback_on_step_end_tensor_inputs is not None and not all(
354354
k in self._callback_tensor_inputs for k in callback_on_step_end_tensor_inputs

0 commit comments

Comments
 (0)