From 13e29d7d5fff2752b5de3d4a85d4850183bca548 Mon Sep 17 00:00:00 2001 From: Gabriellvl Date: Mon, 19 May 2025 16:36:44 +0200 Subject: [PATCH] fix: lint --- backend/src/services/students.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/services/students.ts b/backend/src/services/students.ts index 15088398..ced68e1f 100644 --- a/backend/src/services/students.ts +++ b/backend/src/services/students.ts @@ -10,7 +10,7 @@ import { mapToClassDTO } from '../interfaces/class.js'; import { mapToGroupDTO, mapToGroupDTOId } from '../interfaces/group.js'; import { mapToStudent, mapToStudentDTO } from '../interfaces/student.js'; import { mapToSubmissionDTO, mapToSubmissionDTOId } from '../interfaces/submission.js'; -import {fetchAssignment, getAllAssignments} from './assignments.js'; +import { fetchAssignment } from './assignments.js'; import { mapToQuestionDTO, mapToQuestionDTOId } from '../interfaces/question.js'; import { mapToStudentRequest, mapToStudentRequestDTO } from '../interfaces/student-request.js'; import { Student } from '../entities/users/student.entity.js';