From 250b8d95fb10d0cfb98da60febb9eb5f6f2e7069 Mon Sep 17 00:00:00 2001 From: Egor Date: Thu, 8 Jan 2026 02:45:26 +0300 Subject: [PATCH] Update tariff_purchase.py --- app/handlers/subscription/tariff_purchase.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/handlers/subscription/tariff_purchase.py b/app/handlers/subscription/tariff_purchase.py index 28844fa3..f401ab76 100644 --- a/app/handlers/subscription/tariff_purchase.py +++ b/app/handlers/subscription/tariff_purchase.py @@ -137,7 +137,7 @@ def get_tariff_periods_keyboard( if discount_percent > 0: original_price = price price = _apply_promo_discount(price, discount_percent) - price_text = f"{_format_price_kopeks(price)} (было {_format_price_kopeks(original_price)}, -{discount_percent}%)" + price_text = f"{_format_price_kopeks(price)} 🔥−{discount_percent}%" else: price_text = _format_price_kopeks(price) @@ -540,7 +540,7 @@ def get_tariff_extend_keyboard( if discount_percent > 0: original_price = price price = _apply_promo_discount(price, discount_percent) - price_text = f"{_format_price_kopeks(price)} (было {_format_price_kopeks(original_price)}, -{discount_percent}%)" + price_text = f"{_format_price_kopeks(price)} 🔥−{discount_percent}%" else: price_text = _format_price_kopeks(price) @@ -884,7 +884,7 @@ def get_tariff_switch_periods_keyboard( if discount_percent > 0: original_price = price price = _apply_promo_discount(price, discount_percent) - price_text = f"{_format_price_kopeks(price)} (было {_format_price_kopeks(original_price)}, -{discount_percent}%)" + price_text = f"{_format_price_kopeks(price)} 🔥−{discount_percent}%" else: price_text = _format_price_kopeks(price)