diff --git a/refurbished/cli.py b/refurbished/cli.py index b274583..a684101 100644 --- a/refurbished/cli.py +++ b/refurbished/cli.py @@ -17,7 +17,6 @@ def str(self) -> str: return "No products found\n" table = Table(title="Refurbished Products", box=box.SIMPLE) - table.add_column("Model") table.add_column("Current") table.add_column("Previous") table.add_column("Saving") @@ -25,7 +24,6 @@ def str(self) -> str: for v in self.values: table.add_row( - v.model, f"{v.price:,.0f}", f"{v.previous_price:,.0f}", f"{v.saving_percentage:.0%} (-{v.savings_price:,.0f})",