Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -130,7 +130,7 @@ roleplaying_glossary = {
|
|
| 130 |
|
| 131 |
|
| 132 |
def search_glossary(query):
|
| 133 |
-
for category, terms in
|
| 134 |
if query.lower() in (term.lower() for term in terms):
|
| 135 |
st.markdown(f"#### {category}")
|
| 136 |
st.write(f"- {query}")
|
|
|
|
| 130 |
|
| 131 |
|
| 132 |
def search_glossary(query):
|
| 133 |
+
for category, terms in roleplaying_glossary.items():
|
| 134 |
if query.lower() in (term.lower() for term in terms):
|
| 135 |
st.markdown(f"#### {category}")
|
| 136 |
st.write(f"- {query}")
|