(minor) typo

This commit is contained in:
Ryan Dick 2024-06-19 09:49:50 -04:00 committed by Kent Keirsey
parent 25067e4f0d
commit ceae5fe1db

View File

@ -693,7 +693,7 @@ class DenoiseLatentsInvocation(BaseInvocation):
raise ValueError("'latents' or 'noise' must be provided!")
if noise is not None and noise.shape[1:] != latents.shape[1:]:
raise ValueError(f"Incompatable 'noise' and 'latents' shapes: {latents.shape=} {noise.shape=}")
raise ValueError(f"Incompatible 'noise' and 'latents' shapes: {latents.shape=} {noise.shape=}")
# The seed comes from (in order of priority): the noise field, the latents field, or 0.
seed = 0