Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -68,4 +68,8 @@ if uploaded_file is not None:
|
|
| 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:
|
| 71 |
-
st.write('✅')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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:
|
| 71 |
+
st.write('✅')
|
| 72 |
+
|
| 73 |
+
#===check any obj===
|
| 74 |
+
coldf = sorted(data.select_dtypes(include=['object']).columns.tolist())
|
| 75 |
+
st.write(coldf)
|