Pārlūkot izejas kodu

changed to sketch2SVG

Gilbert Brault 5 gadi atpakaļ
vecāks
revīzija
a9e3bcd8a5
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      pysketcher/shapes.py

+ 1 - 1
pysketcher/shapes.py

@@ -19,7 +19,7 @@ from ruamel.yaml import YAML
 from .MatplotlibDraw import MatplotlibDraw
 drawing_tool = MatplotlibDraw()
 
-def toSVG():
+def sketch2SVG():
     f = BytesIO()
     drawing_tool.mpl.savefig(f, format="svg")
     return f.getvalue()