From b26da2245fbc65e003889539fc352bf14370cded Mon Sep 17 00:00:00 2001 From: JettHu <35261585+JettHu@users.noreply.github.com> Date: Tue, 28 May 2024 07:30:35 +0800 Subject: [PATCH] Fix UnetParams annotation typo (#3589) --- comfy/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/types.py b/comfy/types.py index a8a3d29fdf8..70cf4b158e5 100644 --- a/comfy/types.py +++ b/comfy/types.py @@ -25,7 +25,7 @@ class UnetParams(TypedDict): timestep: torch.Tensor c: UnetApplyConds # List of [0, 1], [0], [1], ... - # 0 means unconditional, 1 means conditional + # 0 means conditional, 1 means conditional unconditional cond_or_uncond: List[int]