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

This commit is contained in:
2025-02-25 17:47:08 -05:00
parent d08744ebb2
commit 87c88f796d

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__()