]> git.parisson.com Git - django_quiz.git/commitdiff
pep8
authortomwalker <tomwalker0472@gmail.com>
Wed, 20 Aug 2014 16:30:12 +0000 (17:30 +0100)
committertomwalker <tomwalker0472@gmail.com>
Wed, 20 Aug 2014 16:30:12 +0000 (17:30 +0100)
multichoice/models.py

index 46d78b5b62818e44f09f6be16104272988b3d349..4fed996783e8423268ee306206ecee85df0db91b 100644 (file)
@@ -7,12 +7,14 @@ ANSWER_ORDER_OPTIONS = (
     ('none', 'None'),
 )
 
+
 class MCQuestion(Question):
 
     answer_order = models.CharField(max_length=30, null=True, blank=True,
                                     choices=ANSWER_ORDER_OPTIONS,
-                                    help_text="The order in which multichoice answer "
-                                              "options are displayed to the user")
+                                    help_text="The order in which multichoice "
+                                              "answer options are displayed "
+                                              "to the user")
 
     def check_if_correct(self, guess):
         answer = Answer.objects.get(id=guess)