Update __init__.py

This commit is contained in:
2026-01-10 17:06:39 +01:00
parent d7533b6c68
commit b5e148f5f4

View File

@@ -1,3 +1,7 @@
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']