Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
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 |
|