# Copyright (c) 2025 The Foundry Visionmongers Ltd. All Rights Reserved.
"""
Initializing module for the CustomUsdSuperLayer SuperTool.
"""

from .Node import CustomUsdSuperLayerNode  # noqa: F401


def GetEditor() -> type:
    """
    :return: The class that implements the SuperTool's editor interface.
    """
    from .Editor import CustomUsdSuperLayerEditor  # noqa: PLC0415

    return CustomUsdSuperLayerEditor
