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 65244fe commit 721af34Copy full SHA for 721af34
labelbox/data/serialization/labelbox_v1/objects.py
@@ -84,11 +84,6 @@ def to_common(self) -> Rectangle:
84
return Rectangle(start=LBV1TIPoint(point=start).to_common(),
85
end=LBV1TIPoint(point=end).to_common())
86
87
- for inner_list in self.polygon:
88
- return Polygon(points=[
89
- LBV1TIPoint(point=point).to_common() for point in inner_list
90
- ])
91
-
92
93
class _Point(BaseModel):
94
x: float
0 commit comments