Changed route name to assignment

This commit is contained in:
2021-12-10 22:02:30 +01:00
parent ccfce10ffa
commit 9f4504b5b8
3 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
#!/usr/bin/env python3
from .report_view import ReportView
from .assignment_view import AssignmentView

View File

@ -3,5 +3,5 @@ from flask import jsonify, request, abort, current_app, Response
from flask_classful import FlaskView
class ReportView(FlaskView):
class AssignmentView(FlaskView):
pass