From b64b3f973deaca0b8f39f99c72ab98d2bda2c122 Mon Sep 17 00:00:00 2001 From: irondru Date: Wed, 1 Jul 2026 17:15:04 +0300 Subject: [PATCH] fix: remove decimals from BTC price --- bot_update_pinned_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot_update_pinned_post.py b/bot_update_pinned_post.py index 2bd94a4..dd09e86 100644 --- a/bot_update_pinned_post.py +++ b/bot_update_pinned_post.py @@ -90,7 +90,7 @@ def build_message(usd: float, btc: float, fng_value: int, fng_label: str) -> str return ( f"💲 " f"₽{usd:.2f} 💰 " - f"${btc:.2f} 😱 {fng_value} ({fng_label})" + f"${btc:,.0f} 😱 {fng_value} ({fng_label})" )