sd_extension-prompt_formatter/scripts/prompt_formatting_definitio...

10 lines
174 B
Python

"""Definitions to be pulled by other scripts."""
from enum import Enum
class UnderSpaceEnum(Enum):
SPACE = 'Space'
UNDERSCORE = 'Underscore'
IGNORE = 'Ignore'