- minor PEP changes

This commit is contained in:
Marius Stanciu 2018-05-26 19:10:07 +03:00
parent bb3b07455c
commit eb0637c5bb
1 changed files with 5 additions and 5 deletions

View File

@ -2994,7 +2994,7 @@ class CNCjob(Geometry):
except KeyError:
points[drill['tool']] = [drill['point']]
#log.debug("Found %d drills." % len(points))
# log.debug("Found %d drills." % len(points))
self.gcode = []
# Basic G-Code macros
@ -3016,7 +3016,7 @@ class CNCjob(Geometry):
else:
gcode += "M03\n" # Spindle start
#gcode += self.pausecode + "\n"
# gcode += self.pausecode + "\n"
for tool in tools:
@ -3187,7 +3187,7 @@ class CNCjob(Geometry):
log.warning("G-code generation not implemented for %s" % (str(type(geo))))
# Reverse coordinates if not a loop so we can continue
# cutting without returning to the beginhing.
# cutting without returning to the beginning.
if type(geo) == LineString:
geo.coords = list(geo.coords)[::-1]
reverse = True