summaryrefslogtreecommitdiffstats
path: root/openbb_terminal
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal')
-rw-r--r--openbb_terminal/cryptocurrency/discovery/cryptostats_view.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbb_terminal/cryptocurrency/discovery/cryptostats_view.py b/openbb_terminal/cryptocurrency/discovery/cryptostats_view.py
index 385f2c33ed3..6cb03aceeb1 100644
--- a/openbb_terminal/cryptocurrency/discovery/cryptostats_view.py
+++ b/openbb_terminal/cryptocurrency/discovery/cryptostats_view.py
@@ -52,7 +52,7 @@ def display_fees(
df = df.sort_values(sortby, ascending=ascend)
if "One Day Fees" in df.columns:
- one_day_fees = df.pop("One Day Fees")
+ one_day_fees = df.pop("One Day Fees").map(lambda x: f"{x:,.2f}")
df.insert(len(df.columns), "One Day Fees", one_day_fees)
print_rich_table(