From a0978a2aab29f2a828a7da61febeb38bf1d2510f Mon Sep 17 00:00:00 2001 From: scmmishra Date: Mon, 18 Mar 2019 18:37:06 +0530 Subject: [PATCH] chore: Cleaned up quiz.py --- erpnext/education/doctype/quiz/quiz.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/erpnext/education/doctype/quiz/quiz.py b/erpnext/education/doctype/quiz/quiz.py index 232ee0e9ad..2c43692588 100644 --- a/erpnext/education/doctype/quiz/quiz.py +++ b/erpnext/education/doctype/quiz/quiz.py @@ -8,7 +8,6 @@ from frappe.model.document import Document class Quiz(Document): - def validate_quiz_attempts(self, enrollment, quiz_name): print(enrollment, quiz_name) if self.max_attempts > 0: @@ -19,10 +18,6 @@ class Quiz(Document): pass - def get_quiz(self): - pass - - def evaluate(self, response_dict, quiz_name): # self.validate_quiz_attempts(enrollment, quiz_name) self.get_questions()