Skip to content

Commit

Permalink
Commented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNathanSpace committed May 17, 2021
1 parent 74f7bbe commit 9c8865e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ideemyouworthy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@

# START TESTING

delete_path = Path(Path.cwd().parent / "playlists")
if delete_path.exists(): shutil.rmtree(delete_path)

delete_path = Path(Path.cwd().parent / "music")
if delete_path.exists(): shutil.rmtree(delete_path)

delete_path = Path(Path.cwd().parent / "cache" / "track_master_list.json")
if delete_path.exists(): os.remove(delete_path)
# delete_path = Path(Path.cwd().parent / "playlists")
# if delete_path.exists(): shutil.rmtree(delete_path)
#
# delete_path = Path(Path.cwd().parent / "music")
# if delete_path.exists(): shutil.rmtree(delete_path)
#
# delete_path = Path(Path.cwd().parent / "cache" / "track_master_list.json")
# if delete_path.exists(): os.remove(delete_path)

# END TESTING

Expand Down

0 comments on commit 9c8865e

Please sign in to comment.