From 09a0830a931fb860f263e6ed0033fc9922b84275 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 28 Aug 2024 04:42:12 -0500 Subject: [PATCH] Fixed Prompt Scheduling node (no latents version) from not working due to missing comma --- animatediff/nodes_scheduling.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/animatediff/nodes_scheduling.py b/animatediff/nodes_scheduling.py index 660b09f..94537cf 100644 --- a/animatediff/nodes_scheduling.py +++ b/animatediff/nodes_scheduling.py @@ -134,7 +134,7 @@ def create_schedule(self, prompts: str, clip, print_schedule=False, max_length: options = PromptOptions(interp=tensor_interp, prepend_text=prepend_text, append_text=append_text, values_replace=values_replace, print_schedule=print_schedule) conditioning = evaluate_prompt_schedule(prompts, max_length, clip, options) - return (conditioning) + return (conditioning,) class ValueSchedulingLatentsNode: diff --git a/pyproject.toml b/pyproject.toml index beb3ba3..cce1c3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-animatediff-evolved" description = "Improved AnimateDiff integration for ComfyUI." -version = "1.2.1" +version = "1.2.2" license = { file = "LICENSE" } dependencies = []