inie2003 commited on
Commit
9ea3427
·
verified ·
1 Parent(s): ca48b5b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -114,7 +114,7 @@ def main():
114
  # Search button
115
  if st.button("Search"):
116
  #Ensure Dataset is selected
117
- if st.session_state.df = None:
118
  st.warning("You have not selected a Dataset. Please click on Load Dataset to load your respective Dataset")
119
  # Validate input
120
  if not query:
 
114
  # Search button
115
  if st.button("Search"):
116
  #Ensure Dataset is selected
117
+ if 'df' not in st.session_state:
118
  st.warning("You have not selected a Dataset. Please click on Load Dataset to load your respective Dataset")
119
  # Validate input
120
  if not query: