mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-11 14:50:49 +08:00
19 lines
389 B
Python
19 lines
389 B
Python
from comfy.nodes.package_typing import CustomNode, InputTypes, FunctionReturnsUIVariables
|
|
|
|
|
|
class ShouldNotExist(CustomNode):
|
|
@classmethod
|
|
def INPUT_TYPES(cls) -> InputTypes:
|
|
return {"required": {}}
|
|
|
|
FUNCTION = "execute"
|
|
OUTPUT_NODE = True
|
|
|
|
def execute(self) -> tuple[...,]:
|
|
return None,
|
|
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"ShouldNotExist": ShouldNotExist
|
|
}
|