Skip to content

Commit 34b7c52

Browse files
authored
Merge pull request #466 from Kosinkadink/scheduling-hotfix
Fix Prompt Scheduling node (the non-latents version)
2 parents 675241c + 09a0830 commit 34b7c52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

animatediff/nodes_scheduling.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def create_schedule(self, prompts: str, clip, print_schedule=False, max_length:
134134
options = PromptOptions(interp=tensor_interp, prepend_text=prepend_text, append_text=append_text,
135135
values_replace=values_replace, print_schedule=print_schedule)
136136
conditioning = evaluate_prompt_schedule(prompts, max_length, clip, options)
137-
return (conditioning)
137+
return (conditioning,)
138138

139139

140140
class ValueSchedulingLatentsNode:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-animatediff-evolved"
33
description = "Improved AnimateDiff integration for ComfyUI."
4-
version = "1.2.1"
4+
version = "1.2.2"
55
license = { file = "LICENSE" }
66
dependencies = []
77

0 commit comments

Comments
 (0)