mirror of
https://github.com/idrirap/ComfyUI-Lora-Auto-Trigger-Words.git
synced 2026-03-21 13:12:13 -03:00
9 lines
475 B
Python
9 lines
475 B
Python
#from .nodes_autotrigger import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS as na_NCM, na_NDNM
|
|
#from .nodes_utils import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS as nu_NCM, nu_NDNM
|
|
from .nodes_autotrigger import NODE_CLASS_MAPPINGS as na_NCM
|
|
from .nodes_utils import NODE_CLASS_MAPPINGS as nu_NCM
|
|
|
|
NODE_CLASS_MAPPINGS = dict(na_NCM, **nu_NCM)
|
|
#NODE_DISPLAY_NAME_MAPPINGS = dict(na_NDNM, **nu_NDNM)
|
|
__all__ = ["NODE_CLASS_MAPPINGS"]#, "NODE_DISPLAY_NAME_MAPPINGS"]
|