chore: removed unused imports

This commit is contained in:
Jannat Patel
2024-11-29 16:07:48 +05:30
parent d688d5cdd9
commit c3af65e535
4 changed files with 0 additions and 5 deletions

View File

@@ -31,8 +31,6 @@ const props = defineProps({
},
})
console.log(props.title)
const file = computed(() => {
if (props.type == 'youtube') return '/assets/lms/frontend/Youtube.mp4'
if (props.type == 'quiz') return '/assets/lms/frontend/Quiz.mp4'

View File

@@ -311,7 +311,6 @@ const saveProgram = () => {
docname: program.doc.name,
name: program.doc.title,
}).then((data) => {
console.log(data)
router.push({ name: 'ProgramForm', params: { programName: data } })
})
}

View File

@@ -4,7 +4,6 @@
import frappe
from frappe import _
from frappe.model.document import Document
from frappe.model.rename_doc import update_document_title
class LMSProgram(Document):

View File

@@ -32,7 +32,6 @@ class LMSQuizSubmission(Document):
self.percentage = (self.score / self.score_out_of) * 100
def notify_member(self):
print(self.is_new())
if self.score != 0 and self.has_value_changed("score"):
notification = frappe._dict(
{