Source code for adtk.aggregator

"""Module of aggregators.

An aggregator combines multiple lists of anomalies into one.

"""
from typing import Dict, Optional

from .._aggregator_base import _Aggregator
from .._utils import _get_all_subclasses_from_superclass
from ._aggregator import AndAggregator, CustomizedAggregator, OrAggregator





__all__ = [
    "OrAggregator",
    "AndAggregator",
    "CustomizedAggregator",
    "print_all_models",
]