Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

add kwargs argument as a workaround to ignore boolean_number arguments #365

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WAS_Node_Suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -12961,7 +12961,7 @@ def INPUT_TYPES(cls):

CATEGORY = "WAS Suite/Logic"

def vae_switch(self, vae_a, vae_b, boolean=True):
def vae_switch(self, vae_a, vae_b, boolean=True, **kwargs):

if boolean:
return (vae_a, )
Expand Down