Skip to content

Commit

Permalink
Fixed Prompt Scheduling node (no latents version) from not working du…
Browse files Browse the repository at this point in the history
…e to missing comma
  • Loading branch information
Kosinkadink committed Aug 28, 2024
1 parent 675241c commit 09a0830
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 09a0830

Please sign in to comment.