Skip to content

Commit

Permalink
style: lint and organize imports using biome
Browse files Browse the repository at this point in the history
  • Loading branch information
soumitradev committed May 31, 2024
1 parent b6eb4cc commit 1c68cf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/controllers/timetable/updateChangedTimetable.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
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 {
checkForClassHoursClash,
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({
Expand Down

0 comments on commit 1c68cf4

Please sign in to comment.