Skip to content

Commit 64c4199

Browse files
committed
Unwrap some fairly plain model fields. No code change, just textual.
- Legacy-Id: 5461
1 parent f7d979c commit 64c4199

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

ietf/community/models.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,8 @@ class Rule(models.Model):
119119

120120
community_list = models.ForeignKey(CommunityList)
121121
cached_ids = models.ManyToManyField(Document)
122-
123-
rule_type = models.CharField(
124-
max_length=30,
125-
choices=TYPES_OF_RULES)
126-
value = models.CharField(
127-
max_length=255)
122+
rule_type = models.CharField(max_length=30, choices=TYPES_OF_RULES)
123+
value = models.CharField(max_length=255)
128124

129125
class Meta:
130126
unique_together= ("community_list", "rule_type", "value")

0 commit comments

Comments
 (0)