From b0cc2a2a1dfa9c2c7530609429b85b97c1601c04 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 19 May 2025 06:32:09 +0200 Subject: [PATCH] chore: slightly improve comment wording --- freqtrade/optimize/hyperopt_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/optimize/hyperopt_tools.py b/freqtrade/optimize/hyperopt_tools.py index 4c72fbd78..2ecc5a73f 100644 --- a/freqtrade/optimize/hyperopt_tools.py +++ b/freqtrade/optimize/hyperopt_tools.py @@ -107,7 +107,7 @@ class HyperoptTools: """ Tell if the space value is contained in the configuration """ - # 'trailing', 'protection' & 'trades' spaces are not included in the 'default' set of spaces + # The following spaces are not included in the 'default' set of spaces if space in ("trailing", "protection", "trades"): return any(s in config["spaces"] for s in [space, "all"]) else: