awacke1 commited on
Commit
22a2701
1 Parent(s): db01a3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ def display_table(vote_data):
24
  emoji, title, description = row[1], row[2], row[3]
25
  upvotes, downvotes = count_votes(vote_data, question_id)
26
 
27
- col1, col2, col3, col4 = st.beta_columns([1, 3, 1, 1])
28
 
29
  col1.write(emoji)
30
  col2.write(f"{title}\n{description}")
 
24
  emoji, title, description = row[1], row[2], row[3]
25
  upvotes, downvotes = count_votes(vote_data, question_id)
26
 
27
+ col1, col2, col3, col4 = st.columns([1, 3, 1, 1])
28
 
29
  col1.write(emoji)
30
  col2.write(f"{title}\n{description}")