refactor(audio/youtubedl): remove redundant <> from repr

This commit is contained in:
Ryan 2025-02-25 17:47:08 -05:00
parent d08744ebb2
commit 87c88f796d
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -60,7 +60,7 @@ class YTDLSource(PCMVolumeTransformer):
)
def __repr__(self):
return f"<YTDLSource title={self.title} original_url=<{self.original_url}> duration={self.duration}>"
return f"<YTDLSource title={self.title} original_url={self.original_url} duration={self.duration}>"
def __str__(self):
return self.__repr__()