Fix mixed tag stats in backtest output

This commit is contained in:
mrpabloyeah
2025-04-24 14:24:36 +02:00
parent 956398ab21
commit ed8b8fbf61

View File

@@ -102,7 +102,7 @@ def text_table_tags(
[
*(
(
(t["key"] if isinstance(t["key"], list) else [t["key"], ""])
list(t["key"]) if isinstance(t["key"], (list, tuple)) else [t["key"], ""]
if is_list
else [t["key"]]
)