From bae4a74196344372a9005af67b0b4f012407d031 Mon Sep 17 00:00:00 2001 From: Christoffer Viken Date: Mon, 5 Jun 2017 13:26:45 +0000 Subject: [PATCH] Oops? Remove debug print --- text_interface/stats.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/text_interface/stats.py b/text_interface/stats.py index 11f9093..4d3dd82 100644 --- a/text_interface/stats.py +++ b/text_interface/stats.py @@ -31,7 +31,6 @@ class ProductPopularityMenu(Menu): text += line_format.format('items sold', 'product') text += '-' * (31 + Product.name_length) + '\n' for product, number in product_list: - print(product.name) if number is None: continue text += line_format.format(str(number), product.name) @@ -60,7 +59,6 @@ class ProductRevenueMenu(Menu): text += line_format.format('revenue', 'items sold', 'price', 'product') text += '-' * (31 + Product.name_length) + '\n' for product, number in product_list: - print(product.name) if number is None: continue text += line_format.format(str(number * product.price), str(number), str(product.price), product.name)