Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ with st.expander("Search by Common Terms 📚"):
|
|
82 |
options = row.get("options", {})
|
83 |
|
84 |
# Formatting options dictionary into a string
|
85 |
-
options_text = "
|
86 |
|
87 |
# Concatenating with labels
|
88 |
question_text = (f"QuestionNumber: {question_number}\r\n"
|
|
|
82 |
options = row.get("options", {})
|
83 |
|
84 |
# Formatting options dictionary into a string
|
85 |
+
options_text = "".join([f"{key}: {value}" for key, value in options.items()])
|
86 |
|
87 |
# Concatenating with labels
|
88 |
question_text = (f"QuestionNumber: {question_number}\r\n"
|