williambr commited on
Commit
6de296e
·
1 Parent(s): f1fc54f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import streamlit as st
4
 
5
  df = pd.read_csv('Map-City-State-Zip-Lat-Long.txt', dtype=str, sep=';')
6
  df = df["Latitude"] = df["Latitude"].astype(float)
7
- #df = df["Longitude"] = df["Longitude"].astype(float)
8
 
9
  st.title("Input a city or zip code and we will take you there!")
10
 
 
4
 
5
  df = pd.read_csv('Map-City-State-Zip-Lat-Long.txt', dtype=str, sep=';')
6
  df = df["Latitude"] = df["Latitude"].astype(float)
7
+ df = df["Longitude"] = df["Longitude"].astype(float)
8
 
9
  st.title("Input a city or zip code and we will take you there!")
10