Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- 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 |
-
|
| 13 |
-
|
| 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():
|