We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2108d2 commit ee96ca7Copy full SHA for ee96ca7
cadquery/cq.py
@@ -3041,7 +3041,7 @@ def extrude(
3041
and the resulting solid becomes the new context solid.
3042
"""
3043
if combine == "cut":
3044
- self.cutBlind(until,clean,taper)
+ return self.cutBlind(until, clean, taper)
3045
else:
3046
# Handle `until` multiple values
3047
if isinstance(until, str) and until in ("next", "last") and combine:
cadquery/utils.py
@@ -70,4 +70,3 @@ def wrapped(*args, **kwargs):
70
return f(*args, **kwargs)
71
72
return wrapped
73
-
0 commit comments