From 81a5056e1bad1af7d57d5008fe00357779980b38 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 9 Nov 2025 08:02:40 +0100 Subject: [PATCH] fix: support `ft-client help` and `ft-client show` commands --- ft_client/freqtrade_client/ft_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ft_client/freqtrade_client/ft_client.py b/ft_client/freqtrade_client/ft_client.py index 13bcbc2b9..efd457764 100644 --- a/ft_client/freqtrade_client/ft_client.py +++ b/ft_client/freqtrade_client/ft_client.py @@ -82,7 +82,7 @@ def print_commands(): def main_exec(parsed: dict[str, Any]): - if parsed.get("show"): + if parsed.get("show") or parsed.get("command") in ("show", "help"): print_commands() sys.exit()