From 83deb903c1188825b10999ee186d18d9720ba164 Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Sun, 2 Feb 2025 13:47:32 +0100 Subject: [PATCH] Removed property that was never used and idk what I wanted to do with it. --- wobuzz/player/track.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wobuzz/player/track.py b/wobuzz/player/track.py index a75e22b..60057c2 100644 --- a/wobuzz/player/track.py +++ b/wobuzz/player/track.py @@ -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)