Update lemonade.py

This commit is contained in:
SpudGunMan
2024-09-21 00:23:12 -07:00
parent 51903d04f5
commit 0f99728be3
+2 -2
View File
@@ -472,9 +472,9 @@ def start_lemonade(nodeID, message, celsius=False):
pnl = locale.currency(gainloss, grouping=True)
if "0.00" not in pnl:
if pnl.startswith("-"):
buffer += "📊P&L📉" + pnl
msg += "📊P&L📉" + pnl
else:
buffer += "📊P&L📈" + pnl
msg += "📊P&L📈" + pnl
# Display the weekly sales summary
pad_week = len(str(weeks.total))