diff options
Diffstat (limited to 'chimere/models.py')
-rw-r--r-- | chimere/models.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chimere/models.py b/chimere/models.py index 539ebfa..d8bf638 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -2137,8 +2137,9 @@ class PropertyModel(models.Model): class PropertyModelChoice(models.Model): - '''Choices for property model - ''' + """ + Choices for property model + """ propertymodel = models.ForeignKey(PropertyModel, related_name='choices', verbose_name=_("Property model")) value = models.CharField(_("Value"), max_length=150) |