def print_summary()

in src/dma/collector/workflows/readiness_check/base.py [0:0]


    def print_summary(self) -> None:
        """Print Summary of the Migration Readiness Assessment."""
        table = Table(show_header=False)
        table.add_column("title", style="cyan", width=80)
        table.add_row("Migration Readiness Report")
        self.console.print(table)
        if self.executor:
            self.executor.print_summary()
        else:
            msg = f"{self.src_info.db_type} is not implemented."
            raise ApplicationError(msg)