williambr commited on
Commit
301df3e
·
1 Parent(s): 3ba7f42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,11 +8,11 @@ df["Longitude"] = df["Longitude"].astype(float)
8
 
9
 
10
 
11
- st.title("Input a city and I'll take you there!")
12
 
13
  city = st.text_input("Please search for a city:")
14
 
15
- if city_name != "":
16
 
17
  split_city_state = city.split(", ")
18
  state_name = split_city_state[1]
 
8
 
9
 
10
 
11
+ st.title("Input a city and state I'll take you there! - Ex. Mound, MN")
12
 
13
  city = st.text_input("Please search for a city:")
14
 
15
+ if city != "":
16
 
17
  split_city_state = city.split(", ")
18
  state_name = split_city_state[1]