Skip to content
Merged
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
10 changes: 10 additions & 0 deletions labelbox/schema/export_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,16 @@ def type(self):
"""Returns the type of the task."""
return self._task.type

@property
def created_by(self):
"""Returns the user who created the task."""
return self._task.created_by

@property
def organization(self):
"""Returns the organization of the task."""
return self._task.organization

def wait_till_done(self, timeout_seconds: int = 300) -> None:
"""Waits until the task is done."""
return self._task.wait_till_done(timeout_seconds)
Expand Down