Skip to content

Commit

Permalink
Merge pull request #17 from NHLOCAL/dev
Browse files Browse the repository at this point in the history
Update singles_sorter_v5.py
  • Loading branch information
NHLOCAL authored Oct 25, 2024
2 parents c0445e2 + b070fbe commit 2cba048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/singles_sorter_v5.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,9 +709,9 @@ def list_from_csv(self):
# Running in a bundle (e.g., PyInstaller)
main_csv_path = Path(sys._MEIPASS) / 'app' / 'singer-list.csv'
else:
main_csv_path = Path(__file__).parent / 'app' / 'singer-list.csv'
main_csv_path = Path("app/singer-list.csv").resolve()

personal_csv_path = Path(__file__).parent / 'app' / 'personal-singer-list.csv'
personal_csv_path = Path("app/personal-singer-list.csv").resolve()

csv_paths = [main_csv_path, personal_csv_path]

Expand Down

0 comments on commit 2cba048

Please sign in to comment.