From fb2afe0f1f631aebadd12baf87278891fd857ae7 Mon Sep 17 00:00:00 2001 From: CruiseDevice Date: Tue, 22 Jan 2019 14:22:20 +0530 Subject: Fix PEP8 issues --- yaksh/test_models.py | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) (limited to 'yaksh') diff --git a/yaksh/test_models.py b/yaksh/test_models.py index 8416e8d..2110f1b 100644 --- a/yaksh/test_models.py +++ b/yaksh/test_models.py @@ -1136,28 +1136,35 @@ class AnswerPaperTestCases(unittest.TestCase): self.user2_answerpaper2 = self.question_paper.make_answerpaper( self.user2, self.ip, 1, self.course.id ) - self.questions_list = Question.objects.filter(summary__in=summary_list[0:5]) + self.questions_list = Question.objects.filter( + summary__in=summary_list[0:5]) # create question_paper3 self.question_paper3 = QuestionPaper( - quiz=self.quiz2, total_marks=3, shuffle_questions=True) + quiz=self.quiz2, total_marks=3, shuffle_questions=True) self.question_paper3.save() - question_list_with_only_one_category = \ - [question for question in self.questions_list - if question.type == 'code'] - self.question_paper3.fixed_questions.add(*question_list_with_only_one_category) + question_list_with_only_one_category = [ + question for question in self.questions_list + if question.type == 'code'] + self.question_paper3.fixed_questions.add( + *question_list_with_only_one_category + ) # create anspaper for user1 with questions of only one category self.user1_answerpaper2 = self.question_paper3.make_answerpaper( - self.user, self.ip, 1, self.course.id - ) + self.user, self.ip, 1, self.course.id + ) # create question_paper4 self.question_paper4 = QuestionPaper( - quiz=self.quiz, total_marks=3, shuffle_questions=True - ) + quiz=self.quiz, total_marks=3, shuffle_questions=True + ) self.question_paper4.save() question_list_with_no_questions = [] - self.question_paper4.fixed_questions.add(*question_list_with_no_questions) + self.question_paper4.fixed_questions.add( + *question_list_with_no_questions + ) # create anspaper for user1 with no questions - self.user1_answerpaper3 = self.question_paper4.make_answerpaper(self.user, self.ip, 1, self.course.id) + self.user1_answerpaper3 = self.question_paper4.make_answerpaper( + self.user, self.ip, 1, self.course.id + ) settings.code_evaluators['python']['standardtestcase'] = \ "yaksh.python_assertion_evaluator.PythonAssertionEvaluator" -- cgit