def __init__()

in clearbox/features.py [0:0]


  def __init__(self, args: list[Node]):
    """Initialize the `Add` node.

    Args:
      args: List of nodes to evaluate and sum up the results. Cannot be empty.
    """
    if not args:
      raise ValueError("`args` should not be empty.")

    self._args = args