Removed property that was never used and idk what I wanted to do with it.
This commit is contained in:
parent
2b8969d929
commit
83deb903c1
1 changed files with 1 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue