faizhalas commited on
Commit
3958e13
·
verified ·
1 Parent(s): c7c4bc6

Update app.py

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