style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-22 15:30:39 +00:00
parent 10749012c6
commit cecd62c8f2
2 changed files with 2 additions and 3 deletions

View file

@ -73,10 +73,9 @@ export async function deleteAssignmentHandler(req: Request, res: Response): Prom
const assignment = await deleteAssignment(classid, assignmentNumber);
res.json({ assignment });
res.json({ assignment });
}
export async function getAssignmentsSubmissionsHandler(req: Request, res: Response): Promise<void> {
const { classid, assignmentNumber, full } = getAssignmentParams(req);

View file

@ -79,7 +79,7 @@ export class QuestionRepository extends DwengoEntityRepository<Question> {
return this.findAll({
where: { inGroup },
orderBy: { timestamp: 'DESC' },
})
});
}
/**