-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (21 loc) · 1.1 KB
/
__init__.py
File metadata and controls
23 lines (21 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from . import raffle
from . import preview_history # Import the renamed module
from . import tag_category_strength # Import the new module
from . import curved_rescale_cfg # Import the curved rescale cfg module
from .raffle import Raffle
from .preview_history import PreviewHistory # Import the renamed class
from .tag_category_strength import TagCategoryStrength # Import the new class
from .curved_rescale_cfg import CurvedRescaleCFG # Import the curved rescale cfg class
NODE_CLASS_MAPPINGS = {
"Raffle": Raffle,
"PreviewHistory": PreviewHistory, # Add the renamed mapping
"TagCategoryStrength": TagCategoryStrength, # Add the new mapping
"CurvedRescaleCFG": CurvedRescaleCFG # Add the curved rescale cfg mapping
}
NODE_DISPLAY_NAME_MAPPINGS = {
"Raffle": "Raffle",
"PreviewHistory": "Preview History (Raffle)", # Add the renamed display name
"TagCategoryStrength": "Tag Category Strength (Raffle)", # Add the new display name
"CurvedRescaleCFG": "Curved Rescale CFG (Raffle)" # Add the curved rescale cfg display name
}
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']