awacke1 commited on
Commit
591749c
·
1 Parent(s): 7cb1949

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ search_query = st.text_input(label="City Name", value="")
23
 
24
  # Filter the dataframe
25
  if search_query != "":
26
- df = df[df["City"].str.contains(search_query) == True]
27
 
28
  # Create a subheader
29
  st.subheader("City Detail")
 
23
 
24
  # Filter the dataframe
25
  if search_query != "":
26
+ df = df[df["city"].str.contains(search_query) == True]
27
 
28
  # Create a subheader
29
  st.subheader("City Detail")