lenawilli commited on
Commit
5d18fee
·
verified ·
1 Parent(s): 4bf1237

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -3
src/streamlit_app.py CHANGED
@@ -9,9 +9,8 @@ from datetime import datetime
9
  st.set_page_config(layout="wide")
10
 
11
  # Constants
12
- BASE_DIR = os.path.dirname(__file__)
13
- MOVIES_PATH = os.path.join(BASE_DIR, "movies.csv")
14
- RATINGS_JSON_PATH = os.path.join(BASE_DIR, "ratings.json")
15
 
16
  # Load or create ratings JSON
17
  def load_ratings():
 
9
  st.set_page_config(layout="wide")
10
 
11
  # Constants
12
+ MOVIES_PATH = os.path.join(os.path.dirname(__file__), "movies.csv")
13
+ RATINGS_JSON_PATH = os.path.join(os.getcwd(), "ratings.json")
 
14
 
15
  # Load or create ratings JSON
16
  def load_ratings():