Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -350,11 +350,11 @@ def main():
|
|
350 |
</div>
|
351 |
<div style="margin-bottom: 20px;">
|
352 |
<div style="font-size: 1em; color: white; margin-bottom: 5px;">Height (cm)</div>
|
353 |
-
<div style="font-size: 2em; color: white; font-weight: bold;">{default_stats['player_height']
|
354 |
</div>
|
355 |
<div style="margin-bottom: 20px;">
|
356 |
<div style="font-size: 1em; color: white; margin-bottom: 5px;">Weight (kg)</div>
|
357 |
-
<div style="font-size: 2em; color: white; font-weight: bold;">{default_stats['player_weight']
|
358 |
</div>
|
359 |
""", unsafe_allow_html=True)
|
360 |
|
|
|
350 |
</div>
|
351 |
<div style="margin-bottom: 20px;">
|
352 |
<div style="font-size: 1em; color: white; margin-bottom: 5px;">Height (cm)</div>
|
353 |
+
<div style="font-size: 2em; color: white; font-weight: bold;">{round(default_stats['player_height'], 2)}</div>
|
354 |
</div>
|
355 |
<div style="margin-bottom: 20px;">
|
356 |
<div style="font-size: 1em; color: white; margin-bottom: 5px;">Weight (kg)</div>
|
357 |
+
<div style="font-size: 2em; color: white; font-weight: bold;">{round(default_stats['player_weight'], 2)}</div>
|
358 |
</div>
|
359 |
""", unsafe_allow_html=True)
|
360 |
|