From 1c68cf46df607a9dd33e77e4dcdc138709349e68 Mon Sep 17 00:00:00 2001 From: soumitradev Date: Fri, 31 May 2024 14:12:22 +0530 Subject: [PATCH] style: lint and organize imports using biome --- backend/src/controllers/timetable/updateChangedTimetable.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/controllers/timetable/updateChangedTimetable.ts b/backend/src/controllers/timetable/updateChangedTimetable.ts index 3433c369..b5094042 100644 --- a/backend/src/controllers/timetable/updateChangedTimetable.ts +++ b/backend/src/controllers/timetable/updateChangedTimetable.ts @@ -1,10 +1,11 @@ import type { Request, Response } from "express"; -import { Course, Timetable, Section } from "../../entity/entities.js"; import { z } from "zod"; import { courseWithSectionsType, sectionTypeList, } from "../../../../lib/src/index.js"; +import { AppDataSource } from "../../db.js"; +import { Course, Section, Timetable } from "../../entity/entities.js"; import { validate } from "../../middleware/zodValidateRequest.js"; import { checkForExamTimingsChange } from "../../utils/checkForChange.js"; import { @@ -12,7 +13,6 @@ import { checkForExamHoursClash, } from "../../utils/checkForClashes.js"; import { addExamTimings, removeSection } from "../../utils/updateSection.js"; -import { AppDataSource } from "../../db.js"; import { updateSectionWarnings } from "../../utils/updateWarnings.js"; const dataSchema = z.object({