Skip to content

Commit c9a9332

Browse files
author
Gareth
authored
Merge pull request #413 from Labelbox/ms/fix-coco
fix panoptic converter
2 parents 89f6fa2 + 6f7312a commit c9a9332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/data/serialization/coco/panoptic_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def from_common(cls,
131131

132132
for result in results:
133133
images.append(result[0])
134-
all_coco_annotations.extend(result[1])
134+
all_coco_annotations.append(result[1])
135135
coco_categories.update(result[2])
136136
coco_things.update(result[3])
137137

0 commit comments

Comments
 (0)