From: tomwalker Date: Wed, 20 Aug 2014 16:30:12 +0000 (+0100) Subject: pep8 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=eb1122a4b740b4912ce8cc0599bcd26f414c39d8;p=django_quiz.git pep8 --- diff --git a/multichoice/models.py b/multichoice/models.py index 46d78b5..4fed996 100644 --- a/multichoice/models.py +++ b/multichoice/models.py @@ -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)