Skip to content

Commit

Permalink
[skip ci] chore: clean up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Reimirno committed Nov 30, 2023
1 parent 36ee49a commit 5c69ce3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions server/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from server.forms import ExamForm, RoomForm, ChooseRoomForm, ImportStudentFromSheetForm, \
ImportStudentFromCanvasRosterForm, DeleteStudentForm, AssignForm, EmailForm, EditStudentForm
from server.services.google import get_spreadsheet_tabs
# from server.services.auth import google_oauth
import server.services.canvas as canvas_client
from server.services.email import email_students
from server.services.core.data import parse_form_and_validate_room, validate_students, \
Expand Down Expand Up @@ -127,7 +126,6 @@ def exam(exam):


@app.route('/<exam:exam>/rooms/import/')
# @google_oauth.required(scopes=['https://www.googleapis.com/auth/spreadsheets.readonly'])
def import_room(exam):
"""
Path: /offerings/<canvas_id>/exams/<exam_name>/rooms/import
Expand All @@ -140,7 +138,6 @@ def import_room(exam):


@app.route('/<exam:exam>/rooms/import/from_custom_sheet/', methods=['GET', 'POST'])
# @google_oauth.required(scopes=['https://www.googleapis.com/auth/spreadsheets.readonly'])
def import_room_from_custom_sheet(exam):
"""
Path: /offerings/<canvas_id>/exams/<exam_name>/rooms/import/new
Expand Down Expand Up @@ -168,7 +165,6 @@ def import_room_from_custom_sheet(exam):


@app.route('/<exam:exam>/rooms/import/from_master_sheet/', methods=['GET', 'POST'])
# @google_oauth.required(scopes=['https://www.googleapis.com/auth/spreadsheets.readonly'])
def import_room_from_master_sheet(exam):
"""
Path: /offerings/<canvas_id>/exams/<exam_name>/rooms/import/choose
Expand Down

0 comments on commit 5c69ce3

Please sign in to comment.