mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-16 21:01:14 +00:00
fix: hyperoptable should work whenever there's any space detected.
This commit is contained in:
@@ -117,7 +117,7 @@ def _print_objs_tabular(objs: list, print_colorized: bool) -> None:
|
|||||||
if "hyperoptable" in s:
|
if "hyperoptable" in s:
|
||||||
objs_to_print[idx].update(
|
objs_to_print[idx].update(
|
||||||
{
|
{
|
||||||
"hyperoptable": "Yes" if s["hyperoptable"]["count"] > 0 else "No",
|
"hyperoptable": "Yes" if len(s["hyperoptable"]) > 0 else "No",
|
||||||
"buy-Params": str(len(s["hyperoptable"].get("buy", []))),
|
"buy-Params": str(len(s["hyperoptable"].get("buy", []))),
|
||||||
"sell-Params": str(len(s["hyperoptable"].get("sell", []))),
|
"sell-Params": str(len(s["hyperoptable"].get("sell", []))),
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user