Skip to content

Commit

Permalink
Merge pull request #466 from Kosinkadink/scheduling-hotfix
Browse files Browse the repository at this point in the history
Fix Prompt Scheduling node (the non-latents version)
  • Loading branch information
Kosinkadink authored Aug 28, 2024
2 parents 675241c + 09a0830 commit 34b7c52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion animatediff/nodes_scheduling.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = []

Expand Down

0 comments on commit 34b7c52

Please sign in to comment.