mattritchey commited on
Commit
6ca1f8f
·
verified ·
1 Parent(s): 73f3408

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -88,8 +88,9 @@ def geocode(address):
88
  json_reponse=requests.get(url,verify=False).json()
89
  lat,lon = json_reponse['results'][0]['location'].values()
90
  except:
91
- st.write("Sorry...Did not Find Address. Try to Correct with Google or just use City, State & Zip.")
92
-
 
93
  return lat, lon
94
 
95
 
 
88
  json_reponse=requests.get(url,verify=False).json()
89
  lat,lon = json_reponse['results'][0]['location'].values()
90
  except:
91
+ st.Header("Sorry...Did not Find Address. Try to Correct with Google or just use City, State & Zip.")
92
+ st.Header("")
93
+ st.Header("")
94
  return lat, lon
95
 
96