From ec970d9f08d0903ebbb7eead39f4a70fc496eb27 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 20 Sep 2024 23:00:41 -0700 Subject: [PATCH] Update lemonade.py --- modules/lemonade.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lemonade.py b/modules/lemonade.py index 13ed5a6..354574a 100644 --- a/modules/lemonade.py +++ b/modules/lemonade.py @@ -305,9 +305,9 @@ def start_lemonade(nodeID, message, celsius=False): # Display the updated item prices buffer += f"\nPrices, " buffer += "🥤:" + \ - locale.currency(cups.cost, grouping=True) + " box of " + str(cups.count) + "." + locale.currency(cups.cost, grouping=True) + " 📦 of " + str(cups.count) + "." buffer += " 🍋:" + \ - locale.currency(lemons.cost, grouping=True) + " bag of " + str(lemons.count) + "." + locale.currency(lemons.cost, grouping=True) + " 🛒 of " + str(lemons.count) + "." buffer += " 🍚:" + \ locale.currency(sugar.cost, grouping=True) + " bag for " + str(sugar.count) + "🥤."