Tobi-ewl commited on
Commit
ae4c690
·
verified ·
1 Parent(s): 7008f14

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -708,7 +708,7 @@ elif modus == "Upload csv-Datei":
708
  try:
709
  if pd.isnull(x):
710
  return ""
711
- return "{:,.2f}".format(float(x)).replace(",", "X").replace(".", ",").replace("X", ".")
712
  except Exception:
713
  return str(x)
714
 
 
708
  try:
709
  if pd.isnull(x):
710
  return ""
711
+ return "{:.2f}".format(float(x)).replace(".", ",")
712
  except Exception:
713
  return str(x)
714