(self, stats_name: str = DataStatsKeys.IMAGE_HISTOGRAM, average: bool | None = True)
| 998 | """ |
| 999 | |
| 1000 | def __init__(self, stats_name: str = DataStatsKeys.IMAGE_HISTOGRAM, average: bool | None = True): |
| 1001 | self.summary_average = average |
| 1002 | report_format = {ImageStatsKeys.HISTOGRAM: None} |
| 1003 | super().__init__(stats_name, report_format) |
| 1004 | |
| 1005 | self.update_ops(ImageStatsKeys.HISTOGRAM, SummaryOperations()) |
| 1006 | |
| 1007 | def __call__(self, data: list[dict]) -> dict: |
| 1008 | """ |
nothing calls this directly
no test coverage detected