Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -35,16 +35,16 @@ add_bg_from_url()
|
|
| 35 |
|
| 36 |
|
| 37 |
city_name = st.text_input('Please Input your Desired City:')
|
| 38 |
-
cities_list = []
|
| 39 |
-
|
| 40 |
|
| 41 |
lat = st.text_input('Please Input the Latitude:' )
|
| 42 |
-
lat_list = []
|
| 43 |
-
|
| 44 |
|
| 45 |
long = st.text_input('Please Input the Longitude:' )
|
| 46 |
-
long_list = []
|
| 47 |
-
|
| 48 |
|
| 49 |
places_seen = pd.DataFrame({
|
| 50 |
'cities' : cities_list,
|
|
|
|
| 35 |
|
| 36 |
|
| 37 |
city_name = st.text_input('Please Input your Desired City:')
|
| 38 |
+
cities_list = [city_name]
|
| 39 |
+
|
| 40 |
|
| 41 |
lat = st.text_input('Please Input the Latitude:' )
|
| 42 |
+
lat_list = [lat]
|
| 43 |
+
|
| 44 |
|
| 45 |
long = st.text_input('Please Input the Longitude:' )
|
| 46 |
+
long_list = [lon]
|
| 47 |
+
|
| 48 |
|
| 49 |
places_seen = pd.DataFrame({
|
| 50 |
'cities' : cities_list,
|