Skip to content

Commit d791e78

Browse files
authored
[PLT-0] Streamable export fix (#1560)
2 parents 91944c2 + bdc9414 commit d791e78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/labelbox/src/labelbox/schema/export_task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,8 @@ def errors(self):
584584
metadata_header),
585585
_MultiGCSFileReader(),
586586
JsonConverter(),
587-
).start(stream_handler=lambda output: data.append(output.json_str))
587+
).start(stream_handler=lambda output: data.append(
588+
json.loads(output.json_str)))
588589
return data
589590

590591
@property

0 commit comments

Comments
 (0)