Skip to content

Commit 6c5278b

Browse files
committed
Fix another comma
1 parent 8773d6b commit 6c5278b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ftui/screens/main_bot_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def _render_closed_trades_summary(self, ftuic):
471471
)
472472

473473
if ftuic.get_client_config().get("trading_mode") != "spot":
474-
render_data = render_data + (f"{v['Leverage']}")
474+
render_data = render_data + (f"{v['Leverage']}",)
475475

476476
render_data = render_data + (
477477
fth.red_or_green(float(v["Profit %"]), justify="right"),

0 commit comments

Comments
 (0)