We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b88ab4 commit 27f2febCopy full SHA for 27f2feb
libs/labelbox/src/labelbox/schema/export_task.py
@@ -609,8 +609,10 @@ def result(self):
609
StreamType.RESULT, metadata_header),
610
_MultiGCSFileReader(),
611
JsonConverter(),
612
- ).start(stream_handler=lambda output: data.append(
613
- json.loads(output.json_str)))
+ ).start(stream_handler=lambda output: [
+ data.append(json.loads(row)) for row in output.json_str.split(
614
+ '\n') if row
615
+ ])
616
return data
617
return self._task.result_url
618
0 commit comments