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: 1 addition & 1 deletion labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "labelbox"
__version__ = "3.13.0"
__version__ = "3.13.1"

from labelbox.schema.project import Project
from labelbox.client import Client
Expand Down
7 changes: 2 additions & 5 deletions labelbox/schema/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import requests

from labelbox import utils
from labelbox.data.annotation_types.collection import LabelGenerator
from labelbox.exceptions import InvalidQueryError, LabelboxError
from labelbox.orm import query
from labelbox.orm.db_object import DbObject, Updateable, Deletable
Expand Down Expand Up @@ -194,9 +193,7 @@ def export_queued_data_rows(self,
self.uid)
time.sleep(sleep_time)

def video_label_generator(self,
timeout_seconds=600,
**kwargs) -> LabelGenerator:
def video_label_generator(self, timeout_seconds=600, **kwargs):
"""
Download video annotations

Expand Down Expand Up @@ -225,7 +222,7 @@ def video_label_generator(self,
"Or use project.label_generator() for text and imagery data.")
return LBV1Converter.deserialize_video(json_data, self.client)

def label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerator:
def label_generator(self, timeout_seconds=600, **kwargs):
"""
Download text and image annotations

Expand Down