From 64c419987729b856903c33b1b54c6d7e0bab21e5 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 24 Feb 2013 21:20:50 +0000 Subject: [PATCH] Unwrap some fairly plain model fields. No code change, just textual. - Legacy-Id: 5461 --- ietf/community/models.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ietf/community/models.py b/ietf/community/models.py index 5b8b0cfff..119aaf3a2 100644 --- a/ietf/community/models.py +++ b/ietf/community/models.py @@ -119,12 +119,8 @@ class Rule(models.Model): community_list = models.ForeignKey(CommunityList) cached_ids = models.ManyToManyField(Document) - - rule_type = models.CharField( - max_length=30, - choices=TYPES_OF_RULES) - value = models.CharField( - max_length=255) + rule_type = models.CharField(max_length=30, choices=TYPES_OF_RULES) + value = models.CharField(max_length=255) class Meta: unique_together= ("community_list", "rule_type", "value")