Skip to content

Commit

Permalink
second comment from codeinspector
Browse files Browse the repository at this point in the history
  • Loading branch information
RemDelaporteMathurin committed Sep 13, 2021
1 parent b36a645 commit b84d952
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paramak/parametric_shapes/extruded_mixed_shape.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ def extrude(self, wire):
)

# extract wires
wireSets = [list(wire.ctx.pendingWires)]
wire_sets = [list(wire.ctx.pendingWires)]

# extrude
solid = Solid.extrudeLinear(
outerWire=wireSets[0][0],
outerWire=wire_sets[0][0],
innerWires=[],
vecNormal=vector,
)
Expand All @@ -133,7 +133,7 @@ def extrude(self, wire):
# if extrude both, do the same in the other direction
if self.extrude_both:
solid2 = Solid.extrudeLinear(
outerWire=wireSets[0][0],
outerWire=wire_sets[0][0],
innerWires=[],
vecNormal=vector.multiply(-1.0),
)
Expand Down

0 comments on commit b84d952

Please sign in to comment.