From eb1122a4b740b4912ce8cc0599bcd26f414c39d8 Mon Sep 17 00:00:00 2001 From: tomwalker Date: Wed, 20 Aug 2014 17:30:12 +0100 Subject: [PATCH] pep8 --- multichoice/models.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.39.5