From b8dffe0eb08b8302ef9aaa2b74cda6e478f56eac Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Sun, 23 Mar 2025 04:09:18 -0400 Subject: [PATCH] chore: revert telegram keyboard list, remove paused button --- freqtrade/rpc/telegram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py index 678c835e1..a595d3d15 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -170,7 +170,7 @@ class Telegram(RPCHandler): self._keyboard: list[list[str | KeyboardButton]] = [ ["/daily", "/profit", "/balance"], ["/status", "/status table", "/performance"], - ["/start", "/pause", "/stop", "/help"], + ["/count", "/start", "/stop", "/help"], ] # do not allow commands with mandatory arguments and critical cmds # TODO: DRY! - its not good to list all valid cmds here. But otherwise