Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -708,7 +708,7 @@ elif modus == "Upload csv-Datei":
|
|
| 708 |
try:
|
| 709 |
if pd.isnull(x):
|
| 710 |
return ""
|
| 711 |
-
return "{:
|
| 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 |
|