Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -63,6 +63,8 @@ if uploaded_file is not None:
|
|
| 63 |
list_of_column_key = [k for k in list_of_column_key if 'Keyword' in k]
|
| 64 |
return list_of_column_key
|
| 65 |
|
|
|
|
|
|
|
| 66 |
if not list_of_column_key:
|
| 67 |
st.error("Unfortunately, you don't have a column containing keywords in your data. Please check again. If you want to use it in another column, please rename it to 'Keywords'.")
|
| 68 |
else:
|
|
|
|
| 63 |
list_of_column_key = [k for k in list_of_column_key if 'Keyword' in k]
|
| 64 |
return list_of_column_key
|
| 65 |
|
| 66 |
+
list_of_column_key = get_data(extype)
|
| 67 |
+
|
| 68 |
if not list_of_column_key:
|
| 69 |
st.error("Unfortunately, you don't have a column containing keywords in your data. Please check again. If you want to use it in another column, please rename it to 'Keywords'.")
|
| 70 |
else:
|