gossminn commited on
Commit
e3c6746
·
1 Parent(s): 27bd5ed

Change feedback column names

Browse files
Files changed (1) hide show
  1. 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("Secret Story #1")
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("Secret Story #2")
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.")