Skip to content

Commit

Permalink
fixed typo that prevented from creating an assessment task
Browse files Browse the repository at this point in the history
  • Loading branch information
malloc-nbytes committed Jan 6, 2025
1 parent 56dbe0b commit 6c9fcc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BackEndFlask/models/assessment_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def create_assessment_task(assessment_task):
due_date=datetime.strptime(assessment_task["due_date"], '%Y-%m-%dT%H:%M:%S.%fZ'),
time_zone=assessment_task["time_zone"],
show_suggestions=assessment_task["show_suggestions"],
locked=assessment_task["locked"],
published=assessment_task["published"],
locked=False,
published=True,
show_ratings=assessment_task["show_ratings"],
unit_of_assessment=assessment_task["unit_of_assessment"],
create_team_password=assessment_task["create_team_password"],
Expand Down

0 comments on commit 6c9fcc6

Please sign in to comment.