awacke1 commited on
Commit
960664b
Β·
1 Parent(s): 8d26781

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def main():
45
  thumbs_down = st.button('πŸ‘Ž')
46
  scoreboard = update_scoreboard(scoreboard, thumbs_up, thumbs_down)
47
  scoreboard.to_csv(filename, index=False)
48
- col1, col2 = st.beta_columns(2)
49
  with col1:
50
  st.write(f'πŸ‘ {scoreboard.loc[0, "Upvotes"]}')
51
  with col2:
 
45
  thumbs_down = st.button('πŸ‘Ž')
46
  scoreboard = update_scoreboard(scoreboard, thumbs_up, thumbs_down)
47
  scoreboard.to_csv(filename, index=False)
48
+ col1, col2 = st.columns(2)
49
  with col1:
50
  st.write(f'πŸ‘ {scoreboard.loc[0, "Upvotes"]}')
51
  with col2: