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