liberatoratif commited on
Commit
78f105e
1 Parent(s): e72b18d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ counties = st.selectbox('Select a County below', list(lats_longs.keys()))
32
 
33
  @st.cache
34
  def county_select(county):
35
- path = "county{}.csv".format(county)
36
  crime = pd.read_csv(path)
37
  return crime
38
 
 
32
 
33
  @st.cache
34
  def county_select(county):
35
+ path = "county\\{}.csv".format(county)
36
  crime = pd.read_csv(path)
37
  return crime
38