williambr commited on
Commit
7616238
1 Parent(s): cb0794a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,8 +12,9 @@ st.title("Input a city and state I'll take you there! - Ex. Mound, MN")
12
 
13
  city_and_state_string = st.text_input("Please search for a city:")
14
 
15
- @st.cache
16
  try:
 
17
  if city_and_state_string != "":
18
 
19
  split_city_state = city_and_state_string.split(", ")
 
12
 
13
  city_and_state_string = st.text_input("Please search for a city:")
14
 
15
+
16
  try:
17
+ @st.cache
18
  if city_and_state_string != "":
19
 
20
  split_city_state = city_and_state_string.split(", ")