from __future__ import annotations import sys from pathlib import Path PACKAGE_SRC = Path(__file__).resolve().parents[1] / "src" if str(PACKAGE_SRC) not in sys.path: sys.path.insert(0, str(PACKAGE_SRC)) from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS __all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]