Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -87,7 +87,7 @@ brand_filter = st.sidebar.text_input("Brand (leave empty for all):", "").title()
|
|
87 |
note_filter = st.sidebar.text_input("Notes (comma-separated):", "").lower()
|
88 |
|
89 |
# Load resources
|
90 |
-
index, metadata
|
91 |
|
92 |
# Convert rating_values to numeric
|
93 |
if 'rating_value' in metadata.columns:
|
|
|
87 |
note_filter = st.sidebar.text_input("Notes (comma-separated):", "").lower()
|
88 |
|
89 |
# Load resources
|
90 |
+
index, metadata = load_resources()
|
91 |
|
92 |
# Convert rating_values to numeric
|
93 |
if 'rating_value' in metadata.columns:
|