Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
SkalskiP committed Oct 20, 2022
1 parent 9f96382 commit 939950f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/logic/import/AnnotationImporter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {ImageData, LabelName} from "../../store/labels/types";
import {LabelType} from "../../data/enums/LabelType";
import {ImageData, LabelName} from '../../store/labels/types';
import {LabelType} from '../../data/enums/LabelType';

export type ImportResult = {
imagesData: ImageData[]
Expand All @@ -18,6 +18,6 @@ export class AnnotationImporter {
onSuccess: (imagesData: ImageData[], labelNames: LabelName[]) => any,
onFailure: (error?:Error) => any
): void {
throw new Error("Method not implemented.");
throw new Error('Method not implemented.');
}
}

0 comments on commit 939950f

Please sign in to comment.