ComfyUI/comfy_extras/silver_custom.py
Silversith 1fda5d19de Update silver_custom.py
Remove Save image list after adding script for Outpu Dir Drawer
2023-04-07 14:50:18 +02:00

19 lines
308 B
Python

class Note:
def __init__(self):
pass
@classmethod
def INPUT_TYPES(s):
return {"required": {"text": ("STRING", {"multiline": True})}}
RETURN_TYPES = ()
FUNCTION = "Note"
OUTPUT_NODE = False
CATEGORY = "silver_custom"
NODE_CLASS_MAPPINGS = {
"Note": Note
}