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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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)