xinchen9 commited on
Commit
7303847
1 Parent(s): 095b0d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = _q.strip()
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: