Skip to content

Commit

Permalink
Course: Fix defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNelson committed Sep 6, 2024
1 parent 85e7764 commit 213db7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo_plugin/pages/course.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def stream():
)

yield from (
",".join([student, "", "", ""] + [""] * len((dojo.course.get("assessments") or [])) + "\n"
",".join([student, "", "", ""] + [""] * len(dojo.course.get("assessments") or [])) + "\n"
for student in missing_students
)

Expand Down

0 comments on commit 213db7c

Please sign in to comment.