mattritchey commited on
Commit
80f57ea
·
verified ·
1 Parent(s): 6ca1f8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -88,9 +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.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
 
 
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