Implemented editing of playlist.

(Changes aren't persistent.)
This commit is contained in:
The Wobbler 2025-01-25 18:04:46 +01:00
parent f0969d013d
commit cba4fd67fa
5 changed files with 37 additions and 12 deletions

View file

@ -18,9 +18,8 @@ class Track:
Class containing data for a track like file path, raw data...
"""
def __init__(self, app, index: int, path: str, property_string: str=None, cache: bool=False):
def __init__(self, app, path: str, property_string: str=None, cache: bool=False):
self.app = app
self.index_custom_sort = index
self.path = path
self.property_string = property_string