Skip to content

Commit 58be50f

Browse files
Re-add docstring
1 parent 40b914f commit 58be50f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pydatalab/src/pydatalab/models/export_task.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@
55

66

77
class ExportStatus(str, Enum):
8+
"""Status of an export task."""
9+
810
PENDING = "pending"
911
PROCESSING = "processing"
1012
READY = "ready"
1113
ERROR = "error"
1214

1315

1416
class ExportTask(BaseModel):
17+
"""Model for an export task."""
18+
1519
task_id: str = Field(..., description="Unique identifier for the export task")
1620
collection_id: str | None = Field(None, description="ID of the collection being exported")
1721
item_id: str | None = Field(None, description="ID of the sample being exported")

0 commit comments

Comments
 (0)