lrschuman17 commited on
Commit
778584d
·
verified ·
1 Parent(s): 2270641

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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'].round(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;">{default_stats['player_weight'].round(2)}</div>
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