home · contact · privacy
Simplify JSON-ification of VersionedAttributes.
[plomtask] / plomtask / versioned_attributes.py
index cc42bbc40f761c35715f11b0ca4f61ba67dbe579..cbd1c8e348a9230b10176d55b4b6a490fe11ff33 100644 (file)
@@ -25,12 +25,6 @@ class VersionedAttribute:
                     history_tuples)
         return hash(hashable)
 
-    @property
-    def as_dict(self) -> dict[str, object]:
-        """Return self as (json.dumps-coompatible) dict."""
-        d = {'parent_id': self.parent.id_, 'history': self.history}
-        return d
-
     @property
     def _newest_timestamp(self) -> str:
         """Return most recent timestamp."""