Skip to content

Commit c1243f2

Browse files
author
gdj0nes
committed
CHG: remove label generator
1 parent 6b7fa18 commit c1243f2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

labelbox/schema/project.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import requests
1414

1515
from labelbox import utils
16-
from labelbox.data.annotation_types.collection import LabelGenerator
1716
from labelbox.exceptions import InvalidQueryError, LabelboxError
1817
from labelbox.orm import query
1918
from labelbox.orm.db_object import DbObject, Updateable, Deletable
@@ -196,7 +195,7 @@ def export_queued_data_rows(self,
196195

197196
def video_label_generator(self,
198197
timeout_seconds=600,
199-
**kwargs) -> LabelGenerator:
198+
**kwargs):
200199
"""
201200
Download video annotations
202201
@@ -225,7 +224,7 @@ def video_label_generator(self,
225224
"Or use project.label_generator() for text and imagery data.")
226225
return LBV1Converter.deserialize_video(json_data, self.client)
227226

228-
def label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerator:
227+
def label_generator(self, timeout_seconds=600, **kwargs):
229228
"""
230229
Download text and image annotations
231230

0 commit comments

Comments
 (0)