From 0c24bb093f6e0ba724db0b2e0f60976e665bfa9b Mon Sep 17 00:00:00 2001 From: Matthew Glanz Date: Tue, 7 Nov 2023 17:35:47 -0500 Subject: [PATCH] Lint --- ACMAS/app/ACMAS_Web/views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ACMAS/app/ACMAS_Web/views.py b/ACMAS/app/ACMAS_Web/views.py index 946bd83..c682b26 100644 --- a/ACMAS/app/ACMAS_Web/views.py +++ b/ACMAS/app/ACMAS_Web/views.py @@ -168,7 +168,6 @@ def pdfReader(request): @login_required(login_url="/login") def uploadFile(request): context = generateContext(request) - school = request.POST.get("school") # Check to see if a school was entered course = request.POST.get( "course" @@ -203,7 +202,6 @@ def uploadManually(request): question = request.POST.get("question") # Check to see if a question was entered answer = request.POST.get("answer") # Check to see if an answer was entered assignment_type = request.POST.get("type") # Retrieve the assignment type - verified = request.POST.get("verified") if ( question is not None