Remove superflous __repr__

This commit is contained in:
Keith Edmunds 2024-04-06 11:15:17 +01:00
parent c1b0b333b8
commit cce7194aa1

View File

@ -609,12 +609,6 @@ class Settings(dbtables.SettingsTable):
class Tracks(dbtables.TracksTable):
def __repr__(self) -> str:
return (
f"<Track(id={self.id}, title={self.title}, "
f"artist={self.artist}, path={self.path}>"
)
def __init__(
self,
session: Session,