faizhalas commited on
Commit
2026120
·
verified ·
1 Parent(s): 88f4378

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ if uploaded_file is not None:
60
  @st.cache_data(ttl=3600)
61
  def get_data(extype):
62
  keycheck = list(data.columns)
63
- keycheck = [k for k in list_of_column_key if 'Keyword' in k]
64
  return keycheck
65
 
66
  keycheck = get_data(extype)
 
60
  @st.cache_data(ttl=3600)
61
  def get_data(extype):
62
  keycheck = list(data.columns)
63
+ keycheck = [k for k in keycheck if 'Keyword' in k]
64
  return keycheck
65
 
66
  keycheck = get_data(extype)