Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions labellerr/core/projects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .document_project import DocucmentProject as LabellerrDocumentProject
from .image_project import ImageProject as LabellerrImageProject
from .video_project import VideoProject as LabellerrVideoProject
from .text_project import TextProject as LabellerrTextProject
from .base import LabellerrProject
from ..annotation_templates import LabellerrAnnotationTemplate
from typing import List
Expand All @@ -20,6 +21,7 @@
"LabellerrDocumentProject",
"LabellerrImageProject",
"LabellerrVideoProject",
"LabellerrTextProject",
]


Expand Down
9 changes: 9 additions & 0 deletions labellerr/core/projects/text_project.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from .base import LabellerrProject, LabellerrProjectMeta


class TextProject(LabellerrProject):

pass


LabellerrProjectMeta._register("text", TextProject)
Loading