Files
Comfyui-Mamad8_QwenEditPlus…/__init__.py
2026-01-10 17:06:39 +01:00

7 lines
318 B
Python

try:
from .qwen_standalone import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
except ImportError:
# Fallback for older python environments or specific structures
from qwen_standalone import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']