File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1
1
name = "labelbox"
2
- __version__ = "3.13.0 "
2
+ __version__ = "3.13.1 "
3
3
4
4
from labelbox .schema .project import Project
5
5
from labelbox .client import Client
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
@@ -194,9 +193,7 @@ def export_queued_data_rows(self,
194
193
self .uid )
195
194
time .sleep (sleep_time )
196
195
197
- def video_label_generator (self ,
198
- timeout_seconds = 600 ,
199
- ** kwargs ) -> LabelGenerator :
196
+ def video_label_generator (self , timeout_seconds = 600 , ** kwargs ):
200
197
"""
201
198
Download video annotations
202
199
@@ -225,7 +222,7 @@ def video_label_generator(self,
225
222
"Or use project.label_generator() for text and imagery data." )
226
223
return LBV1Converter .deserialize_video (json_data , self .client )
227
224
228
- def label_generator (self , timeout_seconds = 600 , ** kwargs ) -> LabelGenerator :
225
+ def label_generator (self , timeout_seconds = 600 , ** kwargs ):
229
226
"""
230
227
Download text and image annotations
231
228
You can’t perform that action at this time.
0 commit comments