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 08bcc1b commit 023ac20Copy full SHA for 023ac20
labelbox/data/annotation_types/geometry/line.py
@@ -21,8 +21,8 @@ class Line(Geometry):
21
22
@property
23
def geometry(self) -> geojson.MultiLineString:
24
- return geojson.MultiLineString([[[point.x, point.y]
25
- for point in self.points]])
+ return geojson.MultiLineString(
+ [[[point.x, point.y] for point in self.points]])
26
27
def draw(self,
28
height: Optional[int] = None,
0 commit comments