From bfe18573f39461c2418cc5203e290affa1270632 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 6 Jul 2024 10:52:03 +0200 Subject: [PATCH] Improve wording for list-exchanges command --- freqtrade/commands/list_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/commands/list_commands.py b/freqtrade/commands/list_commands.py index 3a542226c..97be7bac6 100644 --- a/freqtrade/commands/list_commands.py +++ b/freqtrade/commands/list_commands.py @@ -56,11 +56,11 @@ def start_list_exchanges(args: Dict[str, Any]) -> None: return result if args["list_exchanges_all"]: - print("All exchanges supported by the ccxt library:") exchanges = [build_entry(e, True) for e in exchanges] + print(f"All exchanges supported by the ccxt library ({len(exchanges)} exchanges):") else: - print("Exchanges available for Freqtrade:") exchanges = [build_entry(e, False) for e in exchanges if e["valid"] is not False] + print(f"Exchanges available for Freqtrade ({len(exchanges)} exchanges):") print( tabulate(