From 900d5ba93b36ffdbf92603064a4712a166dae544 Mon Sep 17 00:00:00 2001 From: Andy Date: Sun, 23 Apr 2017 00:45:41 -0700 Subject: [PATCH] fixed typo and long line in docstrings --- svgpathtools/svg2paths.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/svgpathtools/svg2paths.py b/svgpathtools/svg2paths.py index 8d7225e..6587c6d 100644 --- a/svgpathtools/svg2paths.py +++ b/svgpathtools/svg2paths.py @@ -28,8 +28,8 @@ def polyline2pathd(polyline_d): def ellipse2pathd(ellipse): - """converts the parameters from an ellipse or a circle to a string for a Path - object d-attribute""" + """converts the parameters from an ellipse or a circle to a string for a + Path object d-attribute""" cx = ellipse.get('cx', None) cy = ellipse.get('cy', None) @@ -87,7 +87,7 @@ def svg2paths(svg_file_location, """ Converts an SVG file into a list of Path objects and a list of dictionaries containing their attributes. This currently supports - SVG Path, Line, Polyline, Circle and Ellipse, and Polygon elements. + SVG Path, Line, Polyline, Polygon, Circle, and Ellipse elements. :param svg_file_location: the location of the svg file :param convert_lines_to_paths: Set to False to disclude SVG-Line objects (converted to Paths)