Skip to content

Commit

Permalink
Merge pull request #299 from nithinrvs/main
Browse files Browse the repository at this point in the history
fix: #291 path of 'pollmovies.csv' changed
  • Loading branch information
sanjay-kv authored Nov 1, 2024
2 parents fde1cd9 + 9943f0f commit 1ba108d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Web_app/pages/MoviePol.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os

# Path to the poll movies file
movies_file = "pollmovies.csv"
movies_file = os.path.join(os.path.dirname(__file__), "..", "pollmovies.csv")

# Load movies from pollmovies.csv if it exists
if os.path.exists(movies_file):
Expand Down

0 comments on commit 1ba108d

Please sign in to comment.