style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-01 14:05:05 +00:00
parent e1ffedc079
commit 623ad5cd5c
4 changed files with 6 additions and 10 deletions

View file

@ -21,16 +21,15 @@ export class AssignmentController extends BaseController {
return this.delete<{ assignment: any }>(`/${num}`);
}
getSubmissions(assignmentNumber: number, full = true) {
return this.get<{ submissions: any[] }>(`/${assignmentNumber}/submissions`, { full });
}
getQuestions(assignmentNumber: number, full = true) {
return this.get<{ questions: any[]}>(`/${assignmentNumber}/questions`, { full });
return this.get<{ questions: any[] }>(`/${assignmentNumber}/questions`, { full });
}
getGroups(assignmentNumber: number, full = true) {
return this.get<{ groups: any[]}>(`/${assignmentNumber}/groups`, { full });
return this.get<{ groups: any[] }>(`/${assignmentNumber}/groups`, { full });
}
}
}