From 2d7768b72c9aa0e01e74d2ec719600834b61207a Mon Sep 17 00:00:00 2001 From: Yarne Coppens Date: Wed, 4 Sep 2024 10:14:02 +0200 Subject: [PATCH] Removed a debug print --- src/modules/price_to_cash_calculator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/price_to_cash_calculator.py b/src/modules/price_to_cash_calculator.py index 465e781..f3b8ec3 100644 --- a/src/modules/price_to_cash_calculator.py +++ b/src/modules/price_to_cash_calculator.py @@ -8,7 +8,6 @@ def price_to_cash_model(price: int) -> cash_classes.AmountOfBills: for cash_type in cash_types: cash_fits_in_price = math.floor(price / cash_type) - print(cash_type, price, cash_fits_in_price) cash_model[str(cash_type)] = cash_fits_in_price price -= cash_type * cash_fits_in_price