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")