Skip to content

Fix rst format for LabelingService #1765

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 9, 2024
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
1 change: 1 addition & 0 deletions docs/labelbox/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Labelbox Python SDK Documentation
labeling-frontend
labeling-frontend-options
labeling-parameter-override
labeling-service
model
model-config
model-run
Expand Down
2 changes: 1 addition & 1 deletion docs/labelbox/labeling-service.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Project Labeling Service
Labeling Service
===============================================================================================

.. automodule:: labelbox.schema.labeling_service
Expand Down
1 change: 1 addition & 0 deletions libs/labelbox/src/labelbox/schema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import labelbox.schema.invite
import labelbox.schema.label
import labelbox.schema.labeling_frontend
import labelbox.schema.labeling_service
import labelbox.schema.model
import labelbox.schema.model_run
import labelbox.schema.ontology
Expand Down
6 changes: 6 additions & 0 deletions libs/labelbox/src/labelbox/schema/labeling_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@


class LabelingServiceStatus(Enum):
""""
The status of the labeling service.
"""
Accepted = 'ACCEPTED'
Calibration = 'CALIBRATION'
Complete = 'COMPLETE'
Expand All @@ -21,6 +24,9 @@ class LabelingServiceStatus(Enum):


class LabelingService(BaseModel):
"""
Labeling service for a project. This is a service that can be requested to label data for a project.
"""
id: Cuid
project_id: Cuid
created_at: datetime
Expand Down
Loading