From f1f4fdb67a5c1ca3c76cdc85a2ae42720a5b29c6 Mon Sep 17 00:00:00 2001 From: Donald Campbell <125581724+donaldcampbelljr@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:11:05 -0400 Subject: [PATCH] remove unused summarize code --- pipestat/backends/abstract.py | 4 ---- pipestat/backends/filebackend.py | 8 -------- 2 files changed, 12 deletions(-) diff --git a/pipestat/backends/abstract.py b/pipestat/backends/abstract.py index f719ff58..375b8d33 100644 --- a/pipestat/backends/abstract.py +++ b/pipestat/backends/abstract.py @@ -144,7 +144,3 @@ def remove_record( pipeline_type: Optional[str] = None, ) -> bool: _LOGGER.warning("Not implemented yet for this backend") - - def summarize(self) -> None: - _LOGGER.warning("Not implemented yet for this backend") - pass diff --git a/pipestat/backends/filebackend.py b/pipestat/backends/filebackend.py index dae76864..059ce996 100644 --- a/pipestat/backends/filebackend.py +++ b/pipestat/backends/filebackend.py @@ -465,14 +465,6 @@ def set_status( if prev_status: _LOGGER.debug(f"Changed status from '{prev_status}' to '{status_identifier}'") - def summarize(self) -> None: - """ - summarize all reported results by building html report - """ - _LOGGER.debug("Make HTML report here") - print("DEBUG SUMMARIZE") - self._htmlreportbuilder() - def _htmlreportbuilder(self): """ build html report based on all reported results