arthur-common 2.1.52__py3-none-any.whl → 2.1.54__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of arthur-common might be problematic. Click here for more details.

@@ -29,6 +29,12 @@ class AggregationFunction(ABC):
29
29
  def aggregation_type(self) -> Type[SketchMetric] | Type[NumericMetric]:
30
30
  raise NotImplementedError
31
31
 
32
+ @staticmethod
33
+ @abstractmethod
34
+ def reported_aggregations() -> list[BaseReportedAggregation]:
35
+ """Returns the list of aggregations reported by the aggregate function."""
36
+ raise NotImplementedError
37
+
32
38
  @abstractmethod
33
39
  def aggregate(
34
40
  self,