Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
BramMeir committed Mar 9, 2024
1 parent b58501f commit cf4e09c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/api/tests/test_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def create_project(name, description, days, course, group_size=2, max_score=20):
"""Create a Project with the given arguments."""
deadline = timezone.now() + timedelta(days=days)
return Project.objects.create(
name=name, description=description, deadline=deadline, course=course, group_size=group_size, max_score=max_score
name=name, description=description, deadline=deadline, course=course,
group_size=group_size, max_score=max_score
)


Expand Down

0 comments on commit cf4e09c

Please sign in to comment.