X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/6f2781d1ebfccf4c9d5f36a56402f05c161a972c..785b59352880027f54ea0e81335d179eccee75f1:/models/base.py diff --git a/models/base.py b/models/base.py index 836fe4a..faac89b 100644 --- a/models/base.py +++ b/models/base.py @@ -55,10 +55,6 @@ def unregister_value_model(model): class AttributeValue(models.Model): attribute_set = generic.GenericRelation('Attribute', content_type_field='value_content_type', object_id_field='value_object_id') - @property - def attribute(self): - return self.attribute_set.all()[0] - def set_value(self, value): raise NotImplementedError