Removed property that was never used and idk what I wanted to do with it.

This commit is contained in:
The Wobbler 2025-02-02 13:47:32 +01:00
parent 2b8969d929
commit 83deb903c1

View file

@ -10,10 +10,9 @@ class Track:
Class containing data for a track like file path, raw data...
"""
def __init__(self, app, path: str, property_string: str=None, cache: bool=False):
def __init__(self, app, path: str, cache: bool=False):
self.app = app
self.path = path
self.property_string = property_string
self.tags = TinyTag.get(self.path, ignore_errors=False, duration=False)