Skip to content

Commit ed8b8fb

Browse files
committed
Fix mixed tag stats in backtest output
1 parent 956398a commit ed8b8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freqtrade/optimize/optimize_reports/bt_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def text_table_tags(
102102
[
103103
*(
104104
(
105-
(t["key"] if isinstance(t["key"], list) else [t["key"], ""])
105+
list(t["key"]) if isinstance(t["key"], (list, tuple)) else [t["key"], ""]
106106
if is_list
107107
else [t["key"]]
108108
)

0 commit comments

Comments
 (0)