bbbboiwow's picture
Upload folder using huggingface_hub
edb09f2 verified
Raw
History Blame Contribute Delete
382 Bytes
class Int2String:
def __init__(self):
pass
@classmethod
def INPUT_TYPES(s):
return {
"required": {"Int": ("INT", {"forceInput": True})},
}
RETURN_TYPES = ("STRING",)
OUTPUT_NODE = False
FUNCTION = "int2string"
CATEGORY = "Chibi-Nodes/Text"
def int2string(self, Int):
return (str(Int),)