Skip to content
Draft
Changes from 1 commit
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
Next Next commit
refactor and reorganize dev tool nodes
  • Loading branch information
christian-byrne committed Nov 6, 2025
commit fcdb5ddfe6f526accfeb73ef25d4af127fc35148
26 changes: 0 additions & 26 deletions tools/devtools/nodes/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,29 +280,6 @@ def execute(self, int_input: int):
return tuple()


class NodeWithV2ComboInput:
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"combo_input": (
"COMBO",
{"options": ["A", "B"]},
),
}
}

RETURN_TYPES = ("COMBO",)
FUNCTION = "node_with_v2_combo_input"
CATEGORY = "DevTools"
DESCRIPTION = (
"A node that outputs a combo type that adheres to the v2 combo input spec"
)

def node_with_v2_combo_input(self, combo_input: str):
return (combo_input,)


NODE_CLASS_MAPPINGS = {
"DevToolsLongComboDropdown": LongComboDropdown,
"DevToolsNodeWithOptionalInput": NodeWithOptionalInput,
Expand All @@ -317,7 +294,6 @@ def node_with_v2_combo_input(self, combo_input: str):
"DevToolsSimpleSlider": SimpleSlider,
"DevToolsNodeWithSeedInput": NodeWithSeedInput,
"DevToolsNodeWithValidation": NodeWithValidation,
"DevToolsNodeWithV2ComboInput": NodeWithV2ComboInput,
}

NODE_DISPLAY_NAME_MAPPINGS = {
Expand All @@ -334,7 +310,6 @@ def node_with_v2_combo_input(self, combo_input: str):
"DevToolsSimpleSlider": "Simple Slider",
"DevToolsNodeWithSeedInput": "Node With Seed Input",
"DevToolsNodeWithValidation": "Node With Validation",
"DevToolsNodeWithV2ComboInput": "Node With V2 Combo Input",
}

__all__ = [
Expand All @@ -351,7 +326,6 @@ def node_with_v2_combo_input(self, combo_input: str):
"SimpleSlider",
"NodeWithSeedInput",
"NodeWithValidation",
"NodeWithV2ComboInput",
"NODE_CLASS_MAPPINGS",
"NODE_DISPLAY_NAME_MAPPINGS",
]