Skip to content

Commit bc1d47e

Browse files
committed
fix a line break
1 parent 0b10341 commit bc1d47e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graphene_django/tests/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ class Reporter(models.Model):
3838
'Reporter Type',
3939
null=True,
4040
blank=True,
41-
choices=[(1, u'Regular'), (2, u'CNN Reporter')] )
41+
choices=[(1, u'Regular'), (2, u'CNN Reporter')]
42+
)
4243

4344
def __str__(self): # __unicode__ on Python 2
4445
return "%s %s" % (self.first_name, self.last_name)

0 commit comments

Comments
 (0)