File size: 248 Bytes
baa8e90 |
1 2 3 4 5 6 7 8 9 |
# only import if running as a custom node
try:
import comfy.utils
except ImportError:
pass
else:
from .comfy_latent_upscaler import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']
|