home · contact · privacy
Extend Conditions POST test to use new JSON interface.
[plomtask] / plomtask / versioned_attributes.py
index b04c56465a74e1c7626736a0b7bb85f3ef5b8962..cc42bbc40f761c35715f11b0ca4f61ba67dbe579 100644 (file)
@@ -28,9 +28,7 @@ class VersionedAttribute:
     @property
     def as_dict(self) -> dict[str, object]:
         """Return self as (json.dumps-coompatible) dict."""
-        d = {'parent_id': self.parent.id_,
-             'table_name': self.table_name,
-             'history': self.history}
+        d = {'parent_id': self.parent.id_, 'history': self.history}
         return d
 
     @property