Skip to content

Commit

Permalink
remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
mhd-hi committed May 2, 2024
1 parent 8391878 commit 23ea7df
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Injectable } from '@nestjs/common';
import { Fill, Output, Page, Text } from 'pdf2json';
import { firstValueFrom } from 'rxjs';

import { FileUtil } from '../../../utils/pdf/fileUtil';
import { PdfParserUtil } from '../../../utils/pdf/parser/pdfParserUtil';
import { TextExtractor } from '../../../utils/pdf/parser/textExtractorUtil';
import { CourseCodeValidationPipe } from '../../pipes/course-code-validation-pipe';
Expand All @@ -20,10 +19,7 @@ export class PlanificationCoursService {

private courseCodeValidationPipe = new CourseCodeValidationPipe();

constructor(
private httpService: HttpService,
private fileUtil: FileUtil,
) {}
constructor(private httpService: HttpService) {}

public async parsePdfFromUrl(pdfUrl: string): Promise<PlanificationCours[]> {
try {
Expand Down

0 comments on commit 23ea7df

Please sign in to comment.