remove ex22 unnecessary parens

This commit is contained in:
jdegenstein 2023-04-07 14:01:43 -05:00 committed by GitHub
parent 23682daf2e
commit 49064c12c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -503,7 +503,7 @@ length, width, thickness = 80.0, 60.0, 10.0
with BuildPart() as ex22:
Box(length, width, thickness)
pln = Plane((ex22.faces().group_by(Axis.Z)[0])[0]).rotated((0, -50, 0))
pln = Plane(ex22.faces().group_by(Axis.Z)[0][0]).rotated((0, -50, 0))
with BuildSketch(pln) as ex22_sk:
with GridLocations(length / 4, width / 4, 2, 2):
Circle(thickness / 4)