diff --git a/svg2tikz/tikz_export.py b/svg2tikz/tikz_export.py index 42211e6..c0342bb 100644 --- a/svg2tikz/tikz_export.py +++ b/svg2tikz/tikz_export.py @@ -1180,7 +1180,7 @@ def _handle_shape(self, node): p_b = self.convert_unit_coord(Vector2d(node.x2, node.y2)) # check for zero lenght line if not ((p_a[0] == p_b[0]) and (p_a[1] == p_b[1])): - return f"{self.coord_to_tz(p_a)} -- {self.coord_to_tz(p_b)}" + return f"{self.coord_to_tz(p_a)} -- {self.coord_to_tz(p_b)}", [] if node.TAG == "circle": center = self.convert_unit_coord(Vector2d(node.center.x, node.center.y))