Comment out test logic nodes

This commit is contained in:
Jedrzej Kosinski 2025-12-18 16:30:41 -08:00
parent dd4786bcf8
commit b4bc854398

View File

@ -254,14 +254,14 @@ class LogicExtension(ComfyExtension):
async def get_node_list(self) -> list[type[io.ComfyNode]]:
return [
SwitchNode,
SoftSwitchNode,
CustomComboNode,
DCTestNode,
AutogrowNamesTestNode,
AutogrowPrefixTestNode,
ComboOutputTestNode,
MatchTypeTestNode,
AnyTypeTestNode,
# SoftSwitchNode,
# CustomComboNode,
# DCTestNode,
# AutogrowNamesTestNode,
# AutogrowPrefixTestNode,
# ComboOutputTestNode,
# MatchTypeTestNode,
# AnyTypeTestNode,
]
async def comfy_entrypoint() -> LogicExtension: