fix syntax error

This commit is contained in:
doctorpangloss 2025-10-20 13:44:48 -07:00
parent 9d649a18f0
commit f1016ef1c1
2 changed files with 3 additions and 1 deletions

View File

View File

@ -76,7 +76,9 @@ class LTXVImgToVideo(io.ComfyNode):
)
conditioning_latent_frames_mask[:, :, :t.shape[2]] = 1.0 - strength
return io.NodeOutput(positive, negative, {"samples": latent, "noise_mask": conditioning_latent_frames_mask})generate = execute # TODO: remove
return io.NodeOutput(positive, negative, {"samples": latent, "noise_mask": conditioning_latent_frames_mask})
generate = execute # TODO: remove
def conditioning_get_any_value(conditioning, key, default=None):