Spaces:
Build error
Build error
Change feedback column names
Browse files- fillmorle/app.py +2 -2
fillmorle/app.py
CHANGED
@@ -401,13 +401,13 @@ def display_guess_status():
|
|
401 |
event_col, entity_col = st.columns(2)
|
402 |
if guesses_event:
|
403 |
with event_col:
|
404 |
-
st.subheader("
|
405 |
st.table(pd.DataFrame(guesses_event, columns=["Story", "Similarity", "Steps To Go"]))
|
406 |
if game_state["secret_event"] in [g for g, _, _ in guesses_event]:
|
407 |
st.info("Great, you guessed the Event story! In order to win, make a sentence containing both the secret stories.")
|
408 |
if guesses_entity:
|
409 |
with entity_col:
|
410 |
-
st.subheader("
|
411 |
st.table(pd.DataFrame(guesses_entity, columns=["Story", "Similarity", "Steps To Go"]))
|
412 |
if game_state["secret_entity"] in [g for g, _, _ in guesses_entity]:
|
413 |
st.info("Great, you guessed the Thing story! In order to win, make a sentence containing both the secret stories.")
|
|
|
401 |
event_col, entity_col = st.columns(2)
|
402 |
if guesses_event:
|
403 |
with event_col:
|
404 |
+
st.subheader("Event Mini-Story")
|
405 |
st.table(pd.DataFrame(guesses_event, columns=["Story", "Similarity", "Steps To Go"]))
|
406 |
if game_state["secret_event"] in [g for g, _, _ in guesses_event]:
|
407 |
st.info("Great, you guessed the Event story! In order to win, make a sentence containing both the secret stories.")
|
408 |
if guesses_entity:
|
409 |
with entity_col:
|
410 |
+
st.subheader("Thing Mini-Story")
|
411 |
st.table(pd.DataFrame(guesses_entity, columns=["Story", "Similarity", "Steps To Go"]))
|
412 |
if game_state["secret_entity"] in [g for g, _, _ in guesses_entity]:
|
413 |
st.info("Great, you guessed the Thing story! In order to win, make a sentence containing both the secret stories.")
|