fix(rpc): resolve F541 lint error in telegram.py

Remove unnecessary f-string prefix in `_health` method of `freqtrade/rpc/telegram.py` to fix `ruff` linting failure (F541). This was causing CI failures in pre-commit checks.

Co-authored-by: Corax-CoLAB <239841157+Corax-CoLAB@users.noreply.github.com>
pull/12809/head
google-labs-jules[bot] 3 weeks ago
parent a0728870c6
commit 4032cd8d77

@ -1991,7 +1991,7 @@ class Telegram(RPCHandler):
Shows the last process timestamp
"""
health = self._rpc.health()
message = f"💓 *System Health*\n"
message = "💓 *System Health*\n"
message += f"⏱️ *Last process:* `{health['last_process_loc']}`\n"
message += f"🚀 *Bot start:* `{health['bot_start_loc']}`\n"
message += f"🔄 *Last restart:* `{health['bot_startup_loc']}`"

Loading…
Cancel
Save