Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -142,7 +142,7 @@ def filter_queries_model(query: str, filtered_df: pd.DataFrame) -> pd.DataFrame:
|
|
142 |
# if query != "":
|
143 |
# queries = [q.strip() for q in query.split(";")]
|
144 |
for _q in query:
|
145 |
-
_q
|
146 |
if _q != "":
|
147 |
temp_filtered_df = search_table_model(filtered_df, _q)
|
148 |
if len(temp_filtered_df) > 0:
|
|
|
142 |
# if query != "":
|
143 |
# queries = [q.strip() for q in query.split(";")]
|
144 |
for _q in query:
|
145 |
+
print(_q)
|
146 |
if _q != "":
|
147 |
temp_filtered_df = search_table_model(filtered_df, _q)
|
148 |
if len(temp_filtered_df) > 0:
|