Skip to content

Commit 1abe4ba

Browse files
committed
update for yapf
1 parent c8887be commit 1abe4ba

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

labelbox/schema/project.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ def export_queued_data_rows(self,
194194
self.uid)
195195
time.sleep(sleep_time)
196196

197-
def video_label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerator:
197+
def video_label_generator(self,
198+
timeout_seconds=600,
199+
**kwargs) -> LabelGenerator:
198200
"""
199201
Download video annotations
200202
@@ -223,7 +225,7 @@ def video_label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerato
223225
"Or use project.label_generator() for text and imagery data.")
224226
return LBV1Converter.deserialize_video(json_data, self.client)
225227

226-
def label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerator:
228+
def label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerator:
227229
"""
228230
Download text and image annotations
229231
@@ -252,10 +254,10 @@ def label_generator(self, timeout_seconds=600, **kwargs) -> LabelGenerator:
252254
"Or use project.video_label_generator() for video data.")
253255
return LBV1Converter.deserialize(json_data)
254256

255-
def export_labels(
256-
self,
257-
download=False,
258-
timeout_seconds=600, **kwargs) -> Optional[Union[str, List[Dict[Any, Any]]]]:
257+
def export_labels(self,
258+
download=False,
259+
timeout_seconds=600,
260+
**kwargs) -> Optional[Union[str, List[Dict[Any, Any]]]]:
259261
""" Calls the server-side Label exporting that generates a JSON
260262
payload, and returns the URL to that payload.
261263

0 commit comments

Comments
 (0)