hsaest commited on
Commit
7e7b5af
1 Parent(s): 94b67f1

Update tools/attractions/apis.py

Browse files
Files changed (1) hide show
  1. tools/attractions/apis.py +1 -1
tools/attractions/apis.py CHANGED
@@ -5,7 +5,7 @@ from annotation.src.utils import extract_before_parenthesis
5
 
6
 
7
  class Attractions:
8
- def __init__(self, path="../database/attractions/attractions.csv"):
9
  self.path = path
10
  self.data = pd.read_csv(self.path).dropna()[['Name','Latitude','Longitude','Address','Phone','Website',"City"]]
11
  print("Attractions loaded.")
 
5
 
6
 
7
  class Attractions:
8
+ def __init__(self, path="/home/user/app/database/attractions/attractions.csv"):
9
  self.path = path
10
  self.data = pd.read_csv(self.path).dropna()[['Name','Latitude','Longitude','Address','Phone','Website',"City"]]
11
  print("Attractions loaded.")