Update app.py
Browse files
app.py
CHANGED
@@ -72,8 +72,8 @@ for team, vote_counts in votes.items():
|
|
72 |
|
73 |
st.header("Chat")
|
74 |
for message in chat:
|
75 |
-
team, vote_type, clicks = message
|
76 |
-
st.write(f"{team[1]} {team[2]}: {clicks} {vote_type}s")
|
77 |
|
78 |
st.header("Final Results")
|
79 |
for team, vote_counts in votes.items():
|
|
|
72 |
|
73 |
st.header("Chat")
|
74 |
for message in chat:
|
75 |
+
team, vote_type, clicks = message
|
76 |
+
st.write(f"{team[1]} {team[2]}: {clicks} {vote_type}s")
|
77 |
|
78 |
st.header("Final Results")
|
79 |
for team, vote_counts in votes.items():
|