Spaces:
Build error
Build error
Update app.py
Browse files
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(
|
| 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 |
|