Skip to content

Commit 9467f84

Browse files
committed
fix: Remove Optional from status page
1 parent 84dcb0d commit 9467f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lms/lmsweb/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def overview_status():
330330
@webapp.route(f'/course/<int:course_id>/{routes.STATUS.strip("/")}/')
331331
@managers_only
332332
@login_required
333-
def status(course_id: Optional[int]):
333+
def status(course_id: int):
334334
return render_template(
335335
'status.html',
336336
exercises=Solution.status(course_id),

0 commit comments

Comments
 (0)