tmnam20 commited on
Commit
5fb61de
1 Parent(s): 2cf8069

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -61,11 +61,11 @@ with st.form("Player Statistics", border=False):
61
  col1, _, col2 = st.columns([8, 1, 8])
62
  with col1:
63
  playtime_per_day = st.slider(
64
- "Play Hour(s) per Day", min_value=1, max_value=17, value=1
65
  )
66
 
67
  with col2:
68
- current_tier = st.slider("Current Tier", min_value=1, max_value=10, value=1)
69
  # subtract the current tier to convert to 0-based index
70
  consumed_point = 0
71
  for i in range(0, current_tier - 1):
 
61
  col1, _, col2 = st.columns([8, 1, 8])
62
  with col1:
63
  playtime_per_day = st.slider(
64
+ "Play Hour(s) per Day", min_value=1, max_value=24, value=16
65
  )
66
 
67
  with col2:
68
+ current_tier = st.slider("Current Tier", min_value=1, max_value=17, value=1)
69
  # subtract the current tier to convert to 0-based index
70
  consumed_point = 0
71
  for i in range(0, current_tier - 1):