Update app.py
Browse files
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.
|
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:
|