Initial commit

This commit is contained in:
Aodhan Collins
2025-12-29 20:50:25 +00:00
commit 2417dcc090
50 changed files with 1596 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
class ReEnforcer:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"string": ("STRING", {"multiline": True}),
"count": ("INT", {"default": 1, "min": 1, "max": 100}),
}
}
RETURN_TYPES = ("STRING",)
RETURN_NAMES = ("string",)
FUNCTION = "reenforce"
CATEGORY = "AODH Pack"
def reenforce(self, string, count):
result = ", ".join([string] * count)
return (result,)