Merge pull request #11676 from mrpabloyeah/fix-mixed-tag-stats-in-backtest-output

Fix mixed tag stats in backtest output
This commit is contained in:
Matthias
2025-04-24 19:43:19 +02:00
committed by GitHub

View File

@@ -102,7 +102,9 @@ 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"]]
)