File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 13
13
import requests
14
14
15
15
from labelbox import utils
16
- from labelbox .data .annotation_types .collection import LabelGenerator
17
16
from labelbox .exceptions import InvalidQueryError , LabelboxError
18
17
from labelbox .orm import query
19
18
from labelbox .orm .db_object import DbObject , Updateable , Deletable
@@ -196,7 +195,7 @@ def export_queued_data_rows(self,
196
195
197
196
def video_label_generator (self ,
198
197
timeout_seconds = 600 ,
199
- ** kwargs ) -> LabelGenerator :
198
+ ** kwargs ):
200
199
"""
201
200
Download video annotations
202
201
@@ -225,7 +224,7 @@ def video_label_generator(self,
225
224
"Or use project.label_generator() for text and imagery data." )
226
225
return LBV1Converter .deserialize_video (json_data , self .client )
227
226
228
- def label_generator (self , timeout_seconds = 600 , ** kwargs ) -> LabelGenerator :
227
+ def label_generator (self , timeout_seconds = 600 , ** kwargs ):
229
228
"""
230
229
Download text and image annotations
231
230
You can’t perform that action at this time.
0 commit comments