Fix a missing ,

parent 05d098cc
Pipeline #33 skipped
...@@ -495,8 +495,8 @@ class Gcode_tools(inkex.Effect): ...@@ -495,8 +495,8 @@ class Gcode_tools(inkex.Effect):
self.OptionParser.add_option("", "--colorspace", action="store", type="int", dest="colorspace", default="256", help="reduce colorspace") self.OptionParser.add_option("", "--colorspace", action="store", type="int", dest="colorspace", default="256", help="reduce colorspace")
self.OptionParser.add_option("", "--dpi", action="store", type="int", dest="dpi", default="270", help="set DPI for inkscape export") self.OptionParser.add_option("", "--dpi", action="store", type="int", dest="dpi", default="270", help="set DPI for inkscape export")
self.OptionParser.add_option("", "--invert", action="store", type="inkbool", dest="invert", default=True, help="swap to negative colors") self.OptionParser.add_option("", "--invert", action="store", type="inkbool", dest="invert", default=True, help="swap to negative colors")
self.OptionParser.add_option("", "--cooler" action="store", type="float", dest="cooler", default="0.0", help="set cooler temperature. 0 to disable") self.OptionParser.add_option("", "--cooler", action="store", type="float", dest="cooler", default="0.0", help="set cooler temperature. 0 to disable")
self.OptionParser.add_option("", "--cooleronstop" action="store", type="float", dest="cooleronstop", default=False, help="continue to cool down when finished") self.OptionParser.add_option("", "--cooleronstop", action="store", type="float", dest="cooleronstop", default=False, help="continue to cool down when finished")
def parse_curve(self, path): def parse_curve(self, path):
# if self.options.Xscale!=self.options.Yscale: # if self.options.Xscale!=self.options.Yscale:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment