akhil-vaidya commited on
Commit
dd0a70c
·
1 Parent(s): 0a3d399

fix: data_sourcing

Browse files
Files changed (1) hide show
  1. src/app.py +1 -1
src/app.py CHANGED
@@ -27,7 +27,7 @@ loc_name = st.text_input("Enter the location name", value="Mumbai")
27
  dist = st.number_input("Enter the distance", value=35)
28
 
29
  if st.button("Run ETL Pipeline"):
30
- df = data_sourcing(left_lat, left_lon, dist)
31
  if df:
32
  st.write("Data loaded successfully !!")
33
 
 
27
  dist = st.number_input("Enter the distance", value=35)
28
 
29
  if st.button("Run ETL Pipeline"):
30
+ df = data_sourcing(left_lat, left_lon, dist, loc_name)
31
  if df:
32
  st.write("Data loaded successfully !!")
33