diff --git a/pylib/anki/collection.py b/pylib/anki/collection.py index 9bcde267b..73b3b1a5c 100644 --- a/pylib/anki/collection.py +++ b/pylib/anki/collection.py @@ -97,11 +97,6 @@ class Collection: self.conf = ConfigManager(self) self._loadScheduler() - def __repr__(self) -> str: - d = dict(self.__dict__) - del d["models"] - return f"{super().__repr__()} {pprint.pformat(d, width=300)}" - def name(self) -> Any: return os.path.splitext(os.path.basename(self.path))[0]