aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/gfs_monitor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/gfs_monitor.py b/python/gfs_monitor.py
index 5bfa6b53..6e5ea735 100644
--- a/python/gfs_monitor.py
+++ b/python/gfs_monitor.py
@@ -22,7 +22,7 @@ def _formatting(gfs_values):
return None
else:
return "\n".join(
- f"\t* {amount} {currency}" for currency, amount in gfs_values.items()
+ f"\t* {amount:,.2f} {currency}" for currency, amount in gfs_values.items()
)