Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
馃悰 Fix whitespace issue
  • Loading branch information
foosel committed Nov 8, 2019
1 parent 10532b9 commit 8fefa63
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/octoprint/util/gcodeInterpreter.py
Expand Up @@ -364,11 +364,10 @@ def _load(self, gcodeFile, throttle=None, speedx=6000, speedy=6000, offsets=None

if currentExtruder == 0 and len(currentE) > 1 and duplicationMode:
# Copy first extruder length to other extruders
for i in range(1, len(currentE)):
for i in range(1, len(currentE)):
totalExtrusion[i] += e
currentE[i] += e
maxExtrusion[i] = max(maxExtrusion[i],
totalExtrusion[i])
maxExtrusion[i] = max(maxExtrusion[i], totalExtrusion[i])
else:
e = 0.0

Expand Down

0 comments on commit 8fefa63

Please sign in to comment.